-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (34 loc) · 941 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
{
"compilerOptions": {
/* Base Options: */
"skipLibCheck": true, //Skip node_modules type checking
"target": "es2022", //Compile target
"lib": ["es2022"], //Tell TypeScript what built-in types to include
/* Module system: */
"esModuleInterop": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmit": false,
/* Import options: */
"allowJs": true, //Allow import .js
"resolveJsonModule": true, //Allow import .json
"allowSyntheticDefaultImports": true,
"moduleDetection": "force",
/* Strictness: */
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": false,
"declaration": true,
"declarationMap": true,
/* Directory */
"outDir": "dist",
"rootDir": "src",
"baseUrl": "./src",
"paths": {
"@/*": ["*"],
"@client/*": ["client/*"],
"@server/*": ["server/*"],
}
},
"include": ["src/**/*"]
}