tsconfig.json 380 B

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