tsconfig.test.json 357 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "es2019",
  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. "jsx": "react",
  15. "allowJs": true
  16. }
  17. }