mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-10-31 23:15:05 +01:00
ca560632b8
Better readability as there's a bunch of files that are not related to each other in the root directory
34 lines
828 B
JSON
34 lines
828 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"skipLibCheck": true,
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"@/*": ["./docs/.vitepress/*"]
|
|
}
|
|
},
|
|
"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"],
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
|
"allowSyntheticDefaultImports": true
|
|
}
|