-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
39 lines (39 loc) · 1.26 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
{
"include": ["./src/**/*"],
"exclude": ["./test", "./node_modules", "../node_modules"],
"compilerOptions": {
"baseUrl": "./",
"composite": true,
"lib": ["dom", "esnext", "webworker"],
"module": "ESNext",
"target": "ESNext",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "Bundler",
"verbatimModuleSyntax": true,
"allowArbitraryExtensions": true,
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"allowJs": true,
"noEmit": true,
"sourceMap": true,
"removeComments": false,
"noImplicitAny": false,
"noImplicitOverride": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noImplicitUseStrict": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": false,
"strictBindCallApply": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"allowUnusedLabels": true,
"allowUnreachableCode": true,
"forceConsistentCasingInFileNames": true,
"strict": true
}
}