mirror of
https://github.com/gotson/komga.git
synced 2025-12-15 21:12:27 +01:00
18 lines
497 B
JSON
18 lines
497 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
|
|
"exclude": ["src/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noUncheckedIndexedAccess": true, // openapi-ts
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["vite-plugin-vue-layouts-next/client"]
|
|
}
|
|
}
|