FMHY-Website/tsconfig.json
taskylizard e3685783c8
chore(Feedback): remove bug type
Nobody was using the type as intended, so this is part 1 of me phasing
it out.
2025-03-11 23:38:38 +00:00

25 lines
606 B
JSON

{
"compilerOptions": {
"verbatimModuleSyntax": true,
"module": "esnext",
"target": "esnext",
"lib": ["DOM", "ESNext"],
"strict": true,
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": ["vitepress"]
},
"exclude": ["node_modules"],
"include": [
"**/.vitepress/**/*.ts",
"**/.vitepress/**/*.mts",
"**/.vitepress/**/*.vue",
"./.cache/imports.d.ts"
]
}