33 lines
795 B
JSON
33 lines
795 B
JSON
{
|
||
"compilerOptions": {
|
||
"baseUrl": ".",
|
||
"paths": {
|
||
"@/*": ["src/*"]
|
||
},
|
||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
"target": "es2023",
|
||
"lib": ["ES2023", "DOM"],
|
||
"module": "esnext",
|
||
"types": ["vite/client"],
|
||
"skipLibCheck": true,
|
||
|
||
/* Bundler mode */
|
||
"moduleResolution": "bundler",
|
||
"allowImportingTsExtensions": true,
|
||
"verbatimModuleSyntax": true,
|
||
"moduleDetection": "force",
|
||
"noEmit": true,
|
||
"jsx": "react-jsx",
|
||
|
||
/* TS 7: baseUrl удалят; временно допускаем TS 6 */
|
||
"ignoreDeprecations": "6.0",
|
||
|
||
/* Linting */
|
||
"noUnusedLocals": true,
|
||
"noUnusedParameters": true,
|
||
"erasableSyntaxOnly": true,
|
||
"noFallthroughCasesInSwitch": true
|
||
},
|
||
"include": ["src"]
|
||
}
|