mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
18 lines
562 B
JSON
18 lines
562 B
JSON
// tsconfig.json
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2017", // Or newer
|
|
"module": "CommonJS",
|
|
"outDir": "./dist",
|
|
"rootDir": "api/src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true, // Helpful for debugging
|
|
"resolveJsonModule": true // Allows importing JSON files
|
|
},
|
|
"include": ["api/src/**/*"], // Only compile files in src
|
|
"exclude": ["node_modules", "**/*.spec.ts"] // Exclude tests if you have them
|
|
} |