-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·34 lines (34 loc) · 920 Bytes
/
tsconfig.json
File metadata and controls
executable file
·34 lines (34 loc) · 920 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
30
31
32
33
34
{
"compilerOptions": {
"baseUrl": "./",
"target": "ES2021",
"incremental": true,
"types": ["node", "webpack-env"],
"typeRoots": ["./app/types", "./node_modules/@types"],
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "out",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"esModuleInterop": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"strict": true,
"resolveJsonModule": true,
// DO NOT CHANGE (I changed it :))
"paths": {
"@app/*": ["./app/*"]
},
"strictPropertyInitialization": false,
"lib": ["esnext.asynciterable", "es2018", "dom", "dom.iterable"]
},
"ts-node": {
"files": true
},
"extends": "ts-node/node16/tsconfig.json"
}