aethex-forge/api/tsconfig.json
Builder.io 3ba129df07 TypeScript config for Vercel API functions
cgen-3fe92d0d245745a6915a58750fee613a
2025-11-16 04:34:27 +00:00

26 lines
619 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"lib": ["ES2020"],
"moduleResolution": "node",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./",
"rootDir": "./",
"baseUrl": ".",
"paths": {
"@/*": ["../client/*"],
"@shared/*": ["../shared/*"],
"@/server/*": ["../server/*"]
}
},
"include": ["./**/*.ts"],
"exclude": ["node_modules", "**/*.d.ts"]
}