-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
49 lines (49 loc) · 1.1 KB
/
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
40
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"target": "es2020",
"lib": ["es2020", "DOM"],
"module": "commonjs",
"allowJs": true,
"removeComments": true,
"resolveJsonModule": true,
"typeRoots": [
"./node_modules/@types"
],
"sourceMap": true,
"outDir": "dist_server",
"strict": true,
"baseUrl": "src",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "Node",
"skipLibCheck": true,
"jsx": "react-jsx",
"paths": {
"#client/*": ["client/*"],
"#server/*": ["server/*"],
"#shared/*": ["shared/*"],
"#modules/*": ["modules/*"],
"#custom-modules/*": ["../config/modules/*"],
}
},
"files": [
"src/server/index.ts",
"src/server/types/index.ts",
],
"include": [
"src/server",
"src/integrations",
"src/client",
"src/modules/**/*.ts",
"src/modules/**/*.json",
"src/utils",
"src/shared",
"config/modules",
],
"exclude": [
"node_modules",
]
}