-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
56 lines (56 loc) · 1.93 KB
/
tsconfig.base.json
File metadata and controls
56 lines (56 loc) · 1.93 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"module": "ESNext",
"moduleResolution": "node",
"isolatedModules": true,
"experimentalDecorators": true,
"importHelpers": true,
"jsx": "react-jsx",
"target": "es2022",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitOverride": false,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"strict": true,
"strictFunctionTypes": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowJs": true,
"checkJs": false,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"nx-automation": ["tools/nx-automation/src/index.ts"],
"~adapters/*": ["libs/sq-server-commons/src/sq-server-adapters/*"],
"~design-system": ["libs/sq-server-commons/src/design-system/index.ts"],
"~feature-architecture/*": ["private/libs/feature-architecture/src/*"],
"~feature-jira/*": ["private/libs/feature-jira/src/*"],
"~feature-rules/*": ["libs/feature-rules/src/*"],
"~feature-sca/*": ["private/libs/feature-sca/src/*"],
"~private-shared/*": ["private/libs/shared/src/*"],
"~shared/*": ["libs/shared/src/*"],
"~sq-server-addons/*": ["libs/sq-server-addons/src/*"],
"~sq-server-commons/*": ["libs/sq-server-commons/src/*"],
"~sq-server-features/*": ["private/libs/sq-server-features/src/*"],
"~feature-dashboards/*": ["private/libs/feature-dashboards/src/*"]
},
"types": ["node", "vite/client", "jest", "@testing-library/jest-dom"],
"outDir": "./dist"
},
"files": [
"@types/axios.d.ts",
"@types/css.d.ts",
"@types/emotion.d.ts",
"@types/highlightjs-apex.d.ts",
"@types/highlightjs-sap-abap.d.ts",
"@types/jest.d.ts"
],
"exclude": ["node_modules", "tmp"]
}