30 lines
696 B
JSON
30 lines
696 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"useDefineForClassFields": true,
|
||
|
"lib": ["ES2020", "DOM", "DOM.Iterable", "WebWorker", "ES2021.String"],
|
||
|
"module": "ESNext",
|
||
|
"skipLibCheck": true,
|
||
|
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"isolatedModules": true,
|
||
|
"moduleDetection": "force",
|
||
|
"noEmit": true,
|
||
|
"jsx": "react-jsx",
|
||
|
|
||
|
/* Linting */
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": false,
|
||
|
"noUnusedParameters": false,
|
||
|
"noFallthroughCasesInSwitch": false
|
||
|
},
|
||
|
"include": ["src"],
|
||
|
"types": ["vite/client", "vite-plugin-pwa/client"],
|
||
|
"baseUrl": "./src",
|
||
|
"paths": {
|
||
|
"@/*": ["*"]
|
||
|
}
|
||
|
}
|