38 lines
732 B
JSON
38 lines
732 B
JSON
|
{
|
||
|
"files": [],
|
||
|
"references": [
|
||
|
{
|
||
|
"path": "./tsconfig.node.json"
|
||
|
},
|
||
|
{
|
||
|
"path": "./tsconfig.app.json"
|
||
|
}
|
||
|
],
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"useDefineForClassFields": true,
|
||
|
"module": "ESNext",
|
||
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
"skipLibCheck": true,
|
||
|
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmit": true,
|
||
|
"jsx": "preserve",
|
||
|
|
||
|
/* Linting */
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"]
|
||
|
}
|
||
|
}
|
||
|
}
|