iching-broker-level2/tsconfig.backend.json

13 lines
325 B
JSON
Raw Normal View History

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