-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
34 lines (34 loc) · 1.01 KB
/
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": {
"diagnostics": true,
"extendedDiagnostics": true,
"module": "commonjs",
"target": "es5",
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"noImplicitThis": false,
"allowUnreachableCode": true,
"strictNullChecks": false,
"preserveSymlinks": true,
"preserveConstEnums": true,
"strict": true,
"noEmit": false,
"pretty": false,
"outDir": "./dist/cjs",
"declarationDir": "./dist/types",
"rootDir": "./src",
"tsBuildInfoFile": "./.cache/cjs",
"downlevelIteration": true
},
"include": ["./src/**/*.ts"]
}