Files
uptime-monitoring/tsconfig.json
T
2026-08-27 17:51:59 +07:00

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"
]
}