-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 904 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
{
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"sourceRoot": ".",
"module": "CommonJS",
"target": "ESNext",
"paths": {
"@/*": ["./src/*"],
"@shared/*": ["./src/shared/*"],
"@nodes/*": ["./src/shared/nodes/*"],
"@misc/*": ["./src/shared/misc/*"],
"@front/*": ["./src/front/*"],
"@back/*": ["./src/back/*"],
"@interpreter/*": ["./src/interpreter/*"]
},
"moduleResolution": "Node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
},
"ts-node": {
"compilerOptions": {
"alwaysStrict": true,
"rootDir": ".",
"sourceRoot": ".",
"module": "CommonJS",
"target": "ES5",
"incremental": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"pretty": true
},
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc"
}
}