-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
40 lines (37 loc) · 962 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
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"sc4/core": ["src/core/index.ts"],
"sc4/utils": ["src/utils/index.ts"],
"sc4/utils/register": ["src/utils/register-debug-utils.ts"],
"sc4/plugins": ["src/plugins/index.js"],
"sc4/threading": ["src/threading/index.ts"],
"sc4/api": ["src/api/api.js"],
"sc4/api/*": ["src/api/*"],
"sc4/submenus": ["src/submenus/index.ts"],
"sc4/types": ["src/types/types.ts"],
"#cli/*": ["src/cli/*"],
},
"lib": ["es2024"],
"target": "esnext",
"module": "nodenext",
"moduleResolution": "nodenext",
"verbatimModuleSyntax": true,
"declaration": true,
"noImplicitAny": true,
// Prevent TypeScript from checking d.ts files.
"skipLibCheck": true,
"strictNullChecks": true,
// AllowJs has to be true as long as we haven't migrated everything yet.
"allowJs": true,
},
"include": [
"./src/**/*",
"./dev/**/*",
"**/test/**/*",
],
"exclude": [
"src/gui/**",
],
}