ezbookkeeping/tsconfig.json

23 lines
614 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"target": "ES2022",
"lib": ["DOM", "ES2022", "WebWorker"],
"types": ["vite/client"],
"strict": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src/**/*",
"vite.config.ts",
"jest.config.ts"
]
}