48 lines
975 B
JSON
48 lines
975 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
/* Linting */
|
|
"strict": true,
|
|
"outDir": "./dist",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": ".",
|
|
// "paths": {
|
|
// "@/*": ["src/*"],
|
|
// "@/styles/*": ["styles/*"],
|
|
// },
|
|
"typeRoots": [
|
|
"src/vite-env.d.ts"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
// "./src/components/lume/LumeDashboard/LumeDashboard."
|
|
],
|
|
"exclude": [
|
|
"**/*.stories.tsx"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|