mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 14:31:44 +01:00
* feat: adds support for different std out and err streams * feat: adds std to json * fixes tests * fixes deprecated code * fixes download * adds defineEmit as an option * chore: updates modules * adds ui elements * fixes tests * updates languages
33 lines
778 B
JSON
33 lines
778 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"incremental": false,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/*": ["assets/*"]
|
|
},
|
|
"jsx": "preserve",
|
|
"types": [
|
|
"vitest",
|
|
"vite/client",
|
|
"vue/ref-macros",
|
|
"vite-plugin-pages/client",
|
|
"vite-plugin-vue-layouts/client",
|
|
"unplugin-vue-macros/macros-global"
|
|
]
|
|
},
|
|
"include": ["assets/**/*.ts", "assets/**/*.d.ts", "assets/**/*.vue"],
|
|
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|