Files
united-workforce/packages/workflow-dashboard/tsconfig.json
T
2026-05-22 17:46:53 +08:00

23 lines
569 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"strict": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"types": ["bun-types"],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src", "server", "shared", "vite-dev.ts", "server.ts"]
}