tsconfig.json 385 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "outDir": "./lib",
  4. "rootDir": ".",
  5. "allowJs": true,
  6. "sourceMap": true,
  7. "inlineSources": true,
  8. "esModuleInterop": true,
  9. "importHelpers": true,
  10. "noImplicitAny": true,
  11. "target": "ES5"
  12. },
  13. "ts-node": {
  14. "compilerOptions": {
  15. "rootDir": "."
  16. }
  17. },
  18. "include": ["**/*"],
  19. "exclude": ["node_modules", "lib/**/*"]
  20. }