2025-01-12 20:20:36 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2022",
|
|
|
|
"lib": ["ES2023"],
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"module": "ESNext",
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
"strict": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"skipLibCheck": true
|
|
|
|
},
|
2025-01-14 06:34:42 +03:00
|
|
|
"include": [
|
|
|
|
"**/vite.config.ts"
|
|
|
|
]
|
2025-01-12 20:20:36 +03:00
|
|
|
}
|