-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 851 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 851 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
28
{
"extends": ["@tsconfig/strictest/tsconfig", "@tsconfig/node16/tsconfig"],
"compilerOptions": {
"lib": ["ESNext"],
"rootDir": ".",
"outDir": "./server/dist",
"baseUrl": ".",
"moduleResolution": "Node",
"module": "ESNext",
"jsx": "react",
"paths": {
"@@/*": ["./*"],
"@/*": ["./server/src/*"],
"@aurora/style.css": ["./aurora/style.css"],
"@aurora": ["./aurora/dist/index.d.ts"],
"@aurora/*": ["./aurora/dist/*"],
"@bridge/*": ["./bridges/nodejs/src/*"],
"@sdk/*": ["./bridges/nodejs/src/sdk/*"]
},
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true,
"declaration": true
},
"files": ["server/src/global.d.ts", "aurora/global.d.ts"],
"include": ["server/src/**/*"],
"exclude": ["node_modules", "server/dist", "bridges", "tcp_server"]
}