-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
39 lines (38 loc) · 905 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
34
35
36
37
38
39
{
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"lib": ["ESNext"],
"module": "CommonJS",
"moduleResolution": "Node",
"noEmit": false,
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./build",
"paths": {
"@app/*": ["./src/*"]
},
"removeComments": true,
"resolveJsonModule": true,
"rootDir": "./src",
"strict": true,
"target": "ESNext"
},
"include": ["./src/**/*.ts"],
"exclude": ["node_modules", "build"],
"tsc-alias": {
"replacers": {
"base-url": { "enabled": false }
}
}
}