tachiyomi-website/website/tsconfig.json
arkon e0da86ca0c Update eslint setup and fix some errors
Still has a bunch of errors that can't be auto-fixed though.
2023-11-11 10:18:20 -05:00

34 lines
843 B
JSON

{
"compilerOptions": {
"target": "esnext",
"jsx": "preserve",
"lib": ["esnext", "dom"],
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"paths": {
"@/*": ["./docs/.vitepress/*"]
},
"resolveJsonModule": true,
"types": ["vite/client", "@types/gtag.js"],
"strict": true,
"sourceMap": true,
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true
},
"references": [{ "path": "./tsconfig.node.json" }],
"include": [
"typings/**/*.d.ts",
"docs/**/*.vue",
"docs/**/*.tsx",
"docs/**/*.ts",
"docs/.**/**/*.ts",
"docs/.**/**/*.tsx",
"docs/.**/**/*.vue"
],
"exclude": ["**/node_modules/**", "dist/**"],
"extensions": [".js", ".ts", ".tsx", ".jsx", ".vue"],
"allowSyntheticDefaultImports": true
}