mirror of
https://github.com/primedigitaltech/azon_seeker.git
synced 2026-01-19 13:13:22 +08:00
26 lines
705 B
JSON
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/**/*"]
|
|
}
|