mirror of
https://github.com/Gimanh/taskview-community.git
synced 2026-09-11 21:38:56 +00:00
38 lines
810 B
JSON
38 lines
810 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": [
|
|
"ES2023"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
/* Paths - use local vite types instead of root node_modules */
|
|
"paths": {
|
|
"#build/ui": [
|
|
"./node_modules/.nuxt-ui/ui"
|
|
],
|
|
"vite": [
|
|
"./node_modules/vite"
|
|
]
|
|
},
|
|
"types": ["node"],
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"vite.config.ts",
|
|
"eslint.config.ts"
|
|
]
|
|
} |