tsconfig.json 315 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "outDir": "./lib",
  4. "module": "commonjs",
  5. "target": "es6",
  6. "noImplicitAny": false,
  7. "sourceMap": false,
  8. "allowJs": true,
  9. "checkJs": true,
  10. "noEmitOnError": true,
  11. "resolveJsonModule": true,
  12. "esModuleInterop": true
  13. },
  14. "include": [
  15. "src/**/*"
  16. ]
  17. }