azon_seeker/tsconfig.json
2025-07-17 18:16:11 +08:00

26 lines
705 B
JSON

{
"compilerOptions": {
"incremental": false,
"useDefineForClassFields": false, // Could **not** be true because of the conflict between vue-router and sidepanel
"target": "es2016",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["DOM", "ESNext"],
"baseUrl": ".",
"module": "esnext",
"moduleResolution": "node10",
"paths": {
"~/*": ["src/*"]
},
"resolveJsonModule": true,
"types": ["vite/client"],
"strict": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"references": [{ "path": "tsconfig.node.json" }],
"include": ["*.d.ts", "src/**/*"]
}