API-Explorer-II/tsconfig.server.json
2025-12-11 20:44:07 +01:00

18 lines
441 B
JSON

{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"target": "ES2022",
"outDir": "dist-server",
"rootDir": ".",
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": true,
"skipLibCheck": true
},
"exclude": ["server/test", "node_modules"],
"include": ["server", "src/shared-constants.ts"]
}