-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 825 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 825 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
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": false,
"alwaysStrict": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"lib": ["es2017", "esnext.asynciterable"],
"module": "commonjs",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"target": "es6",
"declaration": true,
"declarationDir": "build-decl",
"sourceMap": true,
"outDir": "dist",
"typeRoots": ["node_modules/@types"]
},
"include": ["src/**/*.ts", "test/**/*.ts", "types/**/*.d.ts"],
"exclude": ["node_modules", "dist"]
}