add backend/tsconfig.json

This commit is contained in:
Giuseppe Lombardo 2026-08-12 16:26:09 +00:00
parent d2487f0d6d
commit 24d180e0e8

16
backend/tsconfig.json Normal file
View File

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "Node",
"lib": ["ES2020"],
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src"]
}