Files
flyer-crawler.projectium.com/tsconfig.json
Torben Sorensen 7d5ec198ac
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 7m14s
chore: update dependencies and remove Vitest globals from tsconfig
2025-12-04 10:08:04 -08:00

35 lines
980 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"typeRoots": ["./node_modules/@types", "./src/types"],
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
"types": [
"node",
"vite/client", // Add this line to include Vite's client-side types
],
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": {
"@/*": [
"./src/*"
]
},
"allowImportingTsExtensions": true,
"noEmit": true,
"strict": true, // Enforcing strict mode is a best practice for new projects.
"forceConsistentCasingInFileNames": true // Helps prevent casing-related import errors.
},
"include": ["src", ".vitepress", "vite.config.ts", "vitest.config.ts"],
"exclude": ["node_modules", "dist", "coverage"]
}