tsconfig.json 542 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "lib": ["es5", "es6"],
  4. "target": "esnext",
  5. "allowJs": true,
  6. "esModuleInterop": false,
  7. "module": "commonjs",
  8. "moduleResolution": "node",
  9. "emitDecoratorMetadata": true,
  10. "experimentalDecorators": true,
  11. "skipLibCheck": true,
  12. "skipDefaultLibCheck": true,
  13. "declaration": false,
  14. "sourceMap": false,
  15. "outDir": "./dist",
  16. "rootDir": "src",
  17. "baseUrl": "src"
  18. },
  19. "include": ["src"],
  20. "exclude": [
  21. "**/__tests__",
  22. "**/__fixtures__",
  23. "node_modules"
  24. ]
  25. }