tsconfig.json 255 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "outDir": "./lib",
  4. "rootDir": "./src",
  5. "allowJs": true,
  6. "sourceMap": true,
  7. "inlineSources": true,
  8. "esModuleInterop": true,
  9. "target": "ES5"
  10. },
  11. "include": ["src/**/*"],
  12. "exclude": ["node_modules"]
  13. }