mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
first commit
This commit is contained in:
18
tsconfig.json
Normal file
18
tsconfig.json
Normal file
@@ -0,0 +1,18 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user