-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
41 lines (41 loc) · 1.32 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"jsx": "react-jsx",
"target": "es2022",
"module": "esnext",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": false,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"strict": true,
"strictFunctionTypes": false,
"baseUrl": ".",
"paths": {
"~addons/*": ["private/libs/addons/src/*", "libs/addons/src/*"],
"~branches": ["private/libs/cross-domain/sq-server-features/branches/src/index.ts"],
"~design-system": ["libs/cross-domain/sq-server-shared/src/design-system/index.ts"],
"~sca": ["private/libs/cross-domain/sq-server-features/sca/src/index.ts"],
"~sq-server-shared/*": ["libs/cross-domain/sq-server-shared/src/*"]
},
"types": ["node", "jest", "@testing-library/jest-dom"]
},
"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"]
}