-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 783 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 783 Bytes
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
{
"compilerOptions": {
"lib": ["ES2020", "DOM"],
"module": "CommonJS",
"target": "ES2020",
"rootDir": "./",
"outDir": "./built",
"baseUrl": "./",
"allowJs": true,
"checkJs": false,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"noEmitOnError": false,
"sourceMap": true,
"declaration": false,
"esModuleInterop": false,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"incremental": false,
"skipDefaultLibCheck": true
},
"include": ["types/*.ts", "lib/**/*.ts", "bin/*.ts", "test/**/*.ts"],
"exclude": ["node_modules/**/*"]
}