forked from n-air-app/n-air-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (32 loc) · 890 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es5",
"lib": ["dom", "es7", "es2017", "ES2020", "ES2022"],
"module": "es2015",
"moduleResolution": "node",
"isolatedModules": false,
"experimentalDecorators": true,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"outDir": "bundles/ts",
"sourceMap": true,
"sourceRoot": "/",
"allowJs": false,
"emitDecoratorMetadata": false,
"downlevelIteration": true,
"baseUrl": "./app",
"jsx": "preserve",
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"useUnknownInCatchVariables": true
},
"exclude": ["node_modules"],
"include": ["./app/**/*"]
}