33 lines
965 B
JSON
33 lines
965 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"paths": {
|
|
"#/*": ["./src/*"],
|
|
"@/*": ["./src/*", "../../apps/backend/*"],
|
|
"web-components": ["../../packages/web-components/src"],
|
|
"web-components/*": ["../../packages/web-components/src/*"],
|
|
"@packages/shared": ["../../packages/shared"],
|
|
"@packages/shared/*": ["../../packages/shared/*"],
|
|
"@backend/*": ["../../apps/backend/src/*"]
|
|
},
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client"],
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
}
|
|
}
|