mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-07 17:18:21 +00:00
34 lines
No EOL
795 B
JSON
34 lines
No EOL
795 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-pages/client",
|
|
"unplugin-vue-macros/macros-global"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/*"],
|
|
"@/*": ["src/components/*"]
|
|
}
|
|
},
|
|
"vueCompilerOptions": {
|
|
"plugins": [
|
|
"@vue-macros/volar/define-model",
|
|
"@vue-macros/volar/define-slots"
|
|
]
|
|
},
|
|
"exclude": ["dist", "node_modules", "cypress"]
|
|
} |