
Replit-Commit-Author: Agent Replit-Commit-Session-Id: e931b5ab-041b-42e7-baf1-50017869cef6 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/e19c6a51-7e4c-4bb8-a6a6-46dc00f0ec99/3a46e308-0211-4c54-a52b-c291792321ef.jpg
24 lines
657 B
JSON
24 lines
657 B
JSON
{
|
|
"include": ["client/src/**/*", "shared/**/*", "server/**/*"],
|
|
"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"],
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"types": ["node", "vite/client"],
|
|
"paths": {
|
|
"@/*": ["./client/src/*"],
|
|
"@shared/*": ["./shared/*"]
|
|
}
|
|
}
|
|
}
|