mirror of
https://github.com/Nezumi-2711/uptime-monitoring.git
synced 2026-09-22 13:48:31 +00:00
25 lines
587 B
JSON
25 lines
587 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"types": ["./worker-configuration.d.ts", "vite/client", "node"]
|
|
},
|
|
"exclude": ["dist", "node_modules", "test"],
|
|
"include": [
|
|
"worker-configuration.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"vite.config.ts"
|
|
]
|
|
}
|