-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 777 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 777 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
{
"buildOnSave": false,
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"lib": ["dom", "es6"],
"declaration": true,
"sourceMap": true,
"allowJs": true,
"target": "ES2015",
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"preserveConstEnums": true,
"skipLibCheck": true,
"strict": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"strictPropertyInitialization": false,
"outDir": "dist",
"baseUrl": "src"
},
"include": ["src/**/*.ts", "src/**/*.json", ".env"],
"exclude": ["node_modules", "src/http", "src/logs", "src/tests"]
}