tsconfig.json 376 B

123456789101112131415161718192021
  1. {
  2. "extends": "../../tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "./dist",
  5. "rootDir": ".",
  6. "declaration": true,
  7. "declarationMap": true,
  8. "sourceMap": true,
  9. "strict": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true
  12. },
  13. "include": [
  14. "src/**/*",
  15. "tests"
  16. ],
  17. "exclude": [
  18. "dist",
  19. "node_modules"
  20. ]
  21. }