provapraticabackend/tsconfig.json

15 lines
307 B
JSON
Raw Normal View History

2026-06-09 10:56:20 +02:00
{
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"target": "ES2020",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
2026-06-09 10:56:20 +02:00
"strict": true,
"skipLibCheck": true,
"sourceMap": true,
"types": ["node"]
},
"include": ["src/**/*"]
}