-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathtsconfig.base.json
33 lines (33 loc) · 1.1 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
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "ES2021",
"lib": ["ESNext", "dom"],
"jsx": "react-jsx",
"baseUrl": "${configDir}/src",
"rootDir": "${configDir}/src",
"composite": true,
"paths": {
"@/*": ["./*"],
"@sb/*": ["./.storybook/*"],
"@ui5/webcomponents-cypress-commands": ["./packages/cypress-commands/src/index.ts"],
"@ui5/webcomponents-react": ["./packages/main/src/index.ts"],
"@ui5/webcomponents-react/dist/*": ["./packages/main/src/*"],
"@ui5/webcomponents-react-base": ["./packages/base/src/index.ts"],
"@ui5/webcomponents-react-charts": ["./packages/charts/src/index.ts"]
},
"forceConsistentCasingInFileNames": true,
"strict": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"removeComments": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"declaration": true,
"skipLibCheck": true,
"outDir": "${configDir}/dist",
"declarationDir": "${configDir}/dist",
"noUncheckedSideEffectImports": true
}
}