-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 949 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
{
"exclude": ["node_modules", "/dist"],
"include": ["src/**/*"],
"compileOnSave": false,
"buildOnSave": false,
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["dom", "es6", "es2018", "esnext.asynciterable"],
"outDir": "./dist",
"moduleResolution": "node",
"declaration": false,
"forceConsistentCasingInFileNames": true,
"listFiles": true,
"composite": false,
"removeComments": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true
}
}