Frontend/tsconfig.json

33 lines
761 B
JSON
Raw Normal View History

2024-03-18 08:55:04 +00:00
{
2024-03-28 02:14:12 +00:00
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"lib": ["DOM", "ESNext"],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "node",
"paths": {
"@/*": ["src/*"]
2024-03-18 08:55:04 +00:00
},
2024-03-28 02:14:12 +00:00
"resolveJsonModule": true,
"types": [
"vite/client",
"vite-plugin-vue-layouts/client",
"unplugin-vue-router/client"
],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true
},
"include": [
"./src/typed-router.d.ts"
],
"exclude": ["dist", "node_modules", "cypress"],
"references": [{ "path": "./tsconfig.node.json" }],
2024-03-18 08:55:04 +00:00
}