iching-broker-level3/tsconfig.backend.json

14 lines
296 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-11 07:44:00 +00:00
"include": [
"backend/**/*.ts"
]
}