tsconfig.template.json 358 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "allowSyntheticDefaultImports": true,
  5. "esModuleInterop": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "target": "es2017",
  9. "strict": true,
  10. "sourceMap": false,
  11. "outDir": "./dist",
  12. "baseUrl": "./"
  13. },
  14. "exclude": ["node_modules", "migration.ts"]
  15. }