-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
22 lines (22 loc) · 846 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"lib": ["es6", "es2015.generator"],
"outDir": "./build",
"importHelpers": true,
"strict": true,
"typeRoots": ["node_modules/@types"],
"types": ["node"],
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": true
},
"include": [
"**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}