-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
50 lines (48 loc) · 1.28 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"outDir": "dist/esm/src",
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"isolatedModules": true,
"traceResolution": false,
"noLib": false,
"resolveJsonModule": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["esnext"],
"strict": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noUnusedParameters": true,
"noImplicitThis": true,
"forceConsistentCasingInFileNames": true
},
"ts-node": {
// It is faster to skip typechecking.
// Remove if you want ts-node to do typechecking.
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc-experimental"
},
"exclude": ["node_modules/", "dist/", "tests/fixtures/"],
"include": [
"bin/*.ts",
"examples/**/*.ts",
"scripts/**/*.ts",
"src/**/*.ts",
"tests/**/*.spec.ts",
"tests/*.d.ts"
]
}