-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 795 Bytes
/
Copy pathtsconfig.json
File metadata and controls
27 lines (27 loc) · 795 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
{
"include": ["server/**/*", "shared/**/*"],
"exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
"compilerOptions": {
"incremental": true,
"tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",
// "noEmit": true,
"module": "ESNext",
"target": "ESNext",
"strict": true,
"lib": ["esnext", "dom", "dom.iterable", "es2015", "es2016", "es2017", "es2018"],
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
// "allowImportingTsExtensions": true,
"moduleResolution": "node",
"baseUrl": ".",
"types": ["node"],
"paths": {
"@/*": ["./client/src/*"],
"@shared/*": ["./shared/*"]
},
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
}
}