-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 849 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
23
24
25
26
27
28
29
30
31
32
33
34
{
"compilerOptions": {
"outDir": "./types/",
"module": "amd",
"target": "es5",
"strict": true,
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"sourceMap": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": true,
"declaration": false,
"stripInternal": true,
"lib": ["es6", "es2015.promise", "dom"],
"types": [
"node"
],
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"dist"
],
"include": [
"./src/**/*"
]
}