All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 7m14s
35 lines
980 B
JSON
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"]
|
|
} |