API-Explorer-II/tsconfig.server.json
2025-11-30 10:11:51 +01:00

16 lines
348 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES2020",
"outDir": "dist-server",
"rootDir": "server",
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": true
},
"exclude": ["src", "server/test"],
"include": ["server"]
}