tsconfig.json 476 B

12345678910111213141516171819
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "baseUrl": ".",
  5. "outDir": "dist",
  6. "declaration": true,
  7. "target": "ES2020",
  8. "lib": ["ES2020", "dom"],
  9. "module": "commonjs",
  10. "moduleResolution": "node",
  11. "rootDir": "src",
  12. "esModuleInterop": true,
  13. "experimentalDecorators": true,
  14. "emitDecoratorMetadata": true,
  15. "strict": false
  16. },
  17. "include": ["./src/**/*", "./test/**/*"],
  18. "exclude": ["node_modules", "dist"]
  19. }