Files
ai_web/frontend/tsconfig.json

24 lines
629 B
JSON
Raw Normal View History

2026-01-27 13:41:31 +08:00
{
2026-01-28 16:00:56 +08:00
"include": ["src/**/*", "shared/**/*"],
2026-01-27 13:41:31 +08:00
"exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
"compilerOptions": {
"incremental": true,
"tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",
"noEmit": true,
"module": "ESNext",
"strict": true,
"lib": ["esnext", "dom", "dom.iterable"],
2026-01-28 16:00:56 +08:00
"jsx": "react-jsx",
2026-01-27 13:41:31 +08:00
"esModuleInterop": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"moduleResolution": "bundler",
"baseUrl": ".",
"types": ["node", "vite/client"],
"paths": {
2026-01-28 16:00:56 +08:00
"@/*": ["./src/*"],
2026-01-27 13:41:31 +08:00
"@shared/*": ["./shared/*"]
}
}
}