sdk/tsconfig.build.json

48 lines
975 B
JSON
Raw Normal View History

2023-10-07 16:29:36 +00:00
{
2023-10-08 15:03:26 +00:00
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
2023-10-08 15:35:07 +00:00
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
2023-10-08 15:03:26 +00:00
"composite": true,
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
2023-10-08 15:35:07 +00:00
"outDir": "./dist",
2023-10-08 15:03:26 +00:00
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
// "paths": {
// "@/*": ["src/*"],
// "@/styles/*": ["styles/*"],
// },
2023-10-08 15:35:07 +00:00
"typeRoots": [
"src/vite-env.d.ts"
]
2023-10-08 15:03:26 +00:00
},
"include": [
"./src/**/*",
// "./src/components/lume/LumeDashboard/LumeDashboard."
],
2023-10-08 15:35:07 +00:00
"exclude": [
"**/*.stories.tsx"
],
2023-10-08 15:03:26 +00:00
"references": [
{
"path": "./tsconfig.node.json"
}
]
}