-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
39 lines (39 loc) · 1.06 KB
/
Copy pathtsconfig.build.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
// This is the tsconfig used for building apps, and is the one
// used by webpack. We extend it in tsconfig.json with settings for IDEs.
// Most settings should be set in this config file.
{
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./test/**/*.ts",
"./test/**/*.tsx"
],
"compilerOptions": {
"jsx": "react",
"target": "es5",
"lib": ["ES2022", "DOM"],
"module": "node16",
"rootDir": "./",
"moduleResolution": "node16",
"outDir": "build",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"allowJs": true,
"baseUrl": "./",
"paths": {
"@cdo/apps/*": ["./src/*"],
"@cdo/static/*": ["./static/*"],
"@cdo/i18n/*": ["./i18n/*"],
"@codebridge/*": ["./src/codebridge/*"],
"@cdo/generated-scripts/*": ["./generated-scripts/*"]
},
"resolveJsonModule": true,
"incremental": true,
"sourceMap": true,
"downlevelIteration": true
}
}