-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 620 Bytes
/
Copy pathtsconfig.json
File metadata and controls
23 lines (23 loc) · 620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"lib": ["es2015", "es2016", "es2017", "es2018", "dom"],
"declaration": true,
"outDir": "./lib",
"rootDir": "./src/",
"strictNullChecks": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./src/",
"downlevelIteration": false,
"strict": true,
"isolatedModules": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true
},
"exclude": ["site", "**/*.test.ts", "lib"]
}