API-Explorer-II/tsconfig.server.json

18 lines
441 B
JSON
Raw Normal View History

2023-05-08 09:08:04 +00:00
{
"compilerOptions": {
2025-12-11 19:44:07 +00:00
"module": "nodenext",
"moduleResolution": "nodenext",
2023-05-08 09:08:04 +00:00
"esModuleInterop": true,
2025-12-11 19:44:07 +00:00
"target": "ES2022",
"outDir": "dist-server",
2025-12-10 12:35:56 +00:00
"rootDir": ".",
2023-05-08 09:08:04 +00:00
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2025-12-11 19:44:07 +00:00
"allowJs": true,
"skipLibCheck": true
2023-05-08 09:08:04 +00:00
},
2025-12-11 13:03:21 +00:00
"exclude": ["server/test", "node_modules"],
"include": ["server", "src/shared-constants.ts"]
2023-05-08 09:08:04 +00:00
}