corrieribackend/tsconfig.json
AV77web b897e6bb41
Some checks are pending
Deploy to VPS / deploy (push) Blocked by required conditions
Deploy to VPS / build (push) Successful in 14s
correzioni a Dockerfile, a tsconfig.json e creazione src/index.ts
2026-06-21 00:10:07 +02:00

16 lines
372 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}