-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
31 lines (31 loc) · 854 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
{
"compilerOptions": {
"strict": true,
"target": "esnext",
"module": "esnext",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"isolatedModules": true,
"declaration": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"baseUrl": ".",
"strictNullChecks": true,
"types": ["node", "jest"],
"paths": {
"@build": ["ui/build"],
"@build/*": ["ui/build/*"],
"@server": ["ui/src/server"],
"@server/*": ["ui/src/server/*"],
"@client": ["ui/src/client"],
"@client/*": ["ui/src/client/*"],
"@shared": ["ui/src/shared"],
"@shared/*": ["ui/src/shared/*"]
},
"incremental": true
},
"exclude": ["dist", "dev", "node_modules"]
}