-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
27 lines (27 loc) · 857 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
{
"extends": "@tsconfig/node18/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"#/*": ["src/*"],
"#utils/*": ["src/utils/*"],
"#files": ["src/utils/files"],
"#utils": ["src/utils/utils"],
"#check": ["src/utils/check"],
"#assert": ["src/utils/assert"],
"#std": ["src/utils/std"],
"#actions": ["src/actions"],
"#core/*": ["src/core/*"]
},
"outDir": "build",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": false,
"useUnknownInCatchVariables": false,
"sourceMap": true,
"module": "CommonJS",
"moduleResolution": "node",
"declaration": true
},
"include": ["src", "tests"],
"exclude": ["node_modules"]
}