Files
flyer-crawler.projectium.com/tsconfig.json
Torben Sorensen 9bb90d31a8
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 31s
move to using /src - still css issue work
2025-11-12 15:06:15 -08:00

30 lines
620 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"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
}
}