mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-05 09:02:58 +01:00
33 lines
768 B
JSON
33 lines
768 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "ESNext"],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"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/**/*",
|
|
"src/**/*.vue"
|
|
],
|
|
"exclude": ["dist", "node_modules", "cypress"],
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
|
} |