Files
Memoh/packages/web/tsconfig.app.json
T
Quicy e8b690b174 feat: i18n Setting
feat: i18n setting
2026-01-29 14:59:27 +08:00

22 lines
625 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client"],
"lib": ["DOM","ESNext"],
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"typeRoots": ["./node_modules/@types", "./type.d.ts"],
"rootDir": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "type.d.ts"],
}