-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 866 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
{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"allowImportingTsExtensions": true,
"noImplicitAny": true,
"noEmitOnError": true,
"noImplicitReturns": true,
"noUnusedParameters": true,
"emitDeclarationOnly": true,
"noUncheckedIndexedAccess": true,
"noImplicitThis": true,
"declaration": true,
"strict": true,
"removeComments": false,
"lib": ["DOM", "ESNext", "DOM.Iterable"],
"noUnusedLocals": true,
"moduleResolution": "NodeNext",
"module": "ESNext",
"target": "ESNext",
"outDir": "dist",
"baseUrl": ".",
"isolatedModules": true,
"ignoreDeprecations": "5.0",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"useDefineForClassFields": false
},
"include": ["./src/**/*.ts"],
"exclude": ["node_modules", "./src/**/*.demo.ts", "./src/**/*.test.ts"]
}