-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.json
34 lines (34 loc) · 1.02 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
// GENERATED FROM https://gist.github.com/mtimbs/0eaf27df08cff8f4ca4303de60bf617b
{
"compilerOptions": {
// Project options
"lib": ["ESNext"],
"outDir": "out",
"removeComments": true,
"target": "ESNext",
"module": "CommonJS",
// Module resolution
"esModuleInterop": true,
"moduleResolution": "Node",
// Compilation
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"isolatedModules": true,
// Source Map
"sourceMap": true,
// Strict Checks
"alwaysStrict": true,
"allowUnreachableCode": false,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
// Linter Checks
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules/**", "doc/", "docs/"]
}