-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtsconfig.json
41 lines (41 loc) · 959 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
40
41
{
"ts-node": {
"files": true
},
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"outDir": "./server-build",
"declarationDir": "./server-build",
"sourceMap": false,
"noImplicitAny": false,
"strict": true,
"declaration": true,
"skipLibCheck": true,
"typeRoots": ["./src/types/", "node_modules/@types/"],
"allowJs": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["node", "jest", "vite-plugin-glob/client"],
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react-jsx"
},
"exclude": [
"./app-build",
"./web-build",
"./server-build",
"./mock/",
"./static/",
"./test/",
"./node_modules/",
"./src/web",
"./bproxy.*.js",
"./*.config.js",
"./*.config.ts",
"./coverage"
]
}