34 lines
825 B
JSON
34 lines
825 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"useDefineForClassFields": true,
|
||
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
"module": "ESNext",
|
||
|
"skipLibCheck": true,
|
||
|
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"isolatedModules": true,
|
||
|
"moduleDetection": "force",
|
||
|
"noEmit": true,
|
||
|
"jsx": "react-jsx",
|
||
|
|
||
|
/* Linting */
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"baseUrl": "src",
|
||
|
"paths": {
|
||
|
"@/*": ["./*"],
|
||
|
"@app/*": ["./app/*"],
|
||
|
"@pages/*": ["./pages/*"],
|
||
|
"@shared/*": ["./shared/*"],
|
||
|
"@widgets/*": ["./widgets/*"],
|
||
|
"@feature/*": ["./feature/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": ["src", "declaration.d.ts", "vite-env.d.ts"]
|
||
|
}
|