-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (40 loc) · 1.06 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
/* https://www.npmjs.com/package/@tsconfig/node21 */
{
"compilerOptions": {
/* Start: tsconfig recommended node 21 */
"lib": ["ESNext"],
// "module": "Node16",
// "moduleResolution": "Node16",
// "module": "ESNext",
// "moduleResolution": "Bundler",
"module": "NodeNext", // recommended for modern node projects
// Implied by `"module": "nodenext"`:
// "moduleResolution": "nodenext",
// "esModuleInterop": true,
// "target": "esnext",
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
/* End: tsconfig recommended node 21 */
"resolveJsonModule": true,
"noImplicitAny": true,
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".", // neccessary for paths to work
"rootDir": ".",
"paths": {
"@config/*": ["src/config/*"],
"@utils/*": ["src/utils/*"],
"@runners/*": ["src/runners/*"]
}
},
"include": [
"src",
"eslint.config.js",
"package.json",
"./package.json",
"./test.ts",
"test.ts",
"program[OLD].ts"
]
}