tsconfig.json 364 B

123456789101112131415
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "baseUrl": ".",
  5. "outDir": "dist",
  6. "declaration": true,
  7. "rootDir": "src",
  8. "esModuleInterop": true,
  9. "experimentalDecorators": true,
  10. "emitDecoratorMetadata": true,
  11. "strict": false
  12. },
  13. "include": ["./src/**/*", "./test/**/*"],
  14. "exclude": ["node_modules", "dist"]
  15. }