-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (38 loc) · 970 Bytes
/
tsconfig.json
File metadata and controls
43 lines (38 loc) · 970 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"include": [
"bin/**/*",
"components/**/*",
"config/**/*",
"dataLayer/**/*",
"json/**/*",
"launchServiceSCripts/**/*",
"resources/**/*",
"security/**/*",
"server/**/*",
"sqlTranslator/**/*",
"upgrade/**/*",
"utility/**/*",
"validation/**/*",
"globals.js",
"index.d.ts",
"index.js"
],
"compilerOptions": {
// Allow JS files for mixed codebase
"allowJs": true,
// Type checking only by default; use `tsconfig.build.json` for emitting
"noEmit": true,
// Target Node 20+ with ES2022 features
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
// Interop and module resolution
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
// Allow .ts extensions in imports (will be transpiled to .js by esbuild)
"allowImportingTsExtensions": true,
// Enforce erasable syntax only so we can use Node.js type-stripping
"erasableSyntaxOnly": true
}
}