tsconfig.json 360 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "es2018",
  4. "module": "commonjs",
  5. "sourceMap": true,
  6. "outDir": "production-server",
  7. "noUnusedLocals": true,
  8. "resolveJsonModule": true,
  9. "esModuleInterop": true,
  10. "noEmit": false,
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "strict": false
  14. },
  15. "include": [
  16. "global.d.ts",
  17. "server"
  18. ]
  19. }