buster/apps/web/tsconfig.json

33 lines
899 B
JSON
Raw Normal View History

2025-08-12 11:28:36 +08:00
{
"$schema": "https://json.schemastore.org/tsconfig",
2025-09-05 12:37:04 +08:00
"include": ["src/**/*.ts", "src/**/*.tsx", "scripts/validate-env.ts"],
"exclude": ["node_modules", "dist", "**/.tanstack/**", "**/.output/**", "**/.storybook/**"],
2025-08-12 11:28:36 +08:00
"compilerOptions": {
2025-08-13 04:07:06 +08:00
"target": "ES2022",
2025-08-13 01:22:17 +08:00
"jsx": "react-jsx",
2025-08-13 04:07:06 +08:00
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
2025-08-13 23:47:06 +08:00
"esModuleInterop": true,
2025-08-13 04:07:06 +08:00
"baseUrl": ".",
2025-08-12 11:28:36 +08:00
"paths": {
2025-09-05 12:37:04 +08:00
"@/*": ["./src/*"]
2025-08-12 11:28:36 +08:00
}
},
"references": [
2025-08-13 04:07:06 +08:00
{ "path": "../../packages/server-shared" },
{ "path": "./tsconfig.node.json" }
2025-08-12 11:28:36 +08:00
]
2025-09-05 12:37:04 +08:00
}