API-Explorer-II/tsconfig.server.json

16 lines
346 B
JSON
Raw Normal View History

2023-05-08 09:08:04 +00:00
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES6",
"outDir": "dist-server",
2023-05-08 09:08:04 +00:00
"rootDir": "server",
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": true,
},
2025-04-23 16:57:57 +00:00
"exclude": ["src", "server/test"],
2023-05-08 09:08:04 +00:00
"include": ["server"]
}