mirror of
https://github.com/gotson/komga.git
synced 2026-05-09 05:10:19 +02:00
19 lines
524 B
JSON
19 lines
524 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"],
|
|
"skipLibCheck": true,
|
|
}
|
|
}
|