iching-broker-level2/tsconfig.backend.json

13 lines
325 B
JSON
Raw Permalink Normal View History

2025-04-10 10:21:29 +02:00
{
"compilerOptions": {
2025-04-10 15:57:16 +02:00
"outDir": "./dist/backend",
2025-04-10 15:33:20 +02:00
"rootDir": "./backend",
2025-04-10 15:57:16 +02:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2025-04-11 09:44:00 +02:00
"target": "ES2020",
2025-04-10 15:57:16 +02:00
"esModuleInterop": true,
"skipLibCheck": true
2025-04-10 10:21:29 +02:00
},
2025-04-17 13:50:24 +02:00
"include": ["backend/**/*.ts"],
"exclude": ["backend/**/*.test.ts"]
2025-04-11 09:44:00 +02:00
}