mirror of
https://github.com/SamyRai/tercul-frontend.git
synced 2025-12-27 04:51:34 +00:00
Sets up the project with initial files, components, routes, and UI elements. Replit-Commit-Author: Agent Replit-Commit-Session-Id: cbacfb18-842a-4116-a907-18c0105ad8ec Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/39b5c689-6e8a-4d5a-9792-69cc81a56534/affc56b0-365e-4ece-9cba-9e70bbbf0893.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/*"]
|
|
}
|
|
}
|
|
}
|