mirror of
https://github.com/gotson/komga.git
synced 2026-03-30 18:15:21 +02:00
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"./dir2json.d.ts",
|
|
"./.storybook/**/*",
|
|
"vitest.shims.d.ts"
|
|
],
|
|
"exclude": ["src/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ESNext",
|
|
"moduleResolution": "bundler", // Komga: https://uvr.esm.is/introduction.html#setup
|
|
"noUncheckedIndexedAccess": true, // Komga: https://openapi-ts.dev/introduction
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": [
|
|
"unplugin-vue-router/client", // Komga: https://uvr.esm.is/introduction.html#setup
|
|
"vite-plugin-vue-layouts-next/client" // Komga: https://github.com/loicduong/vite-plugin-vue-layouts-next#client-types
|
|
],
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"module": "preserve",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitOverride": true,
|
|
"allowImportingTsExtensions": false,
|
|
"lib": ["esnext", "dom", "dom.iterable"]
|
|
}
|
|
}
|