-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·40 lines (35 loc) · 925 Bytes
/
tsconfig.json
File metadata and controls
executable file
·40 lines (35 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist",
"target": "ES2017",
"module": "ES6",
"moduleResolution": "Node",
"lib": ["ES2017", "DOM"],
"types": ["jest", "node"],
"typeRoots": ["node_modules/@types"],
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true
},
"files": [
"./src/typings/hbs.d.ts"
],
"include": [
"./src/index.ts"
],
"exclude": [
"node_modules"
]
}