tsconfig.json 307 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "sourceMap": true,
  4. "strict": true,
  5. "target": "ES2017",
  6. "module": "commonjs",
  7. "esModuleInterop":true,
  8. "moduleResolution": "Node",
  9. "declaration": true,
  10. "outDir": "./lib",
  11. "rootDir": "./src",
  12. "types": []
  13. },
  14. "include": [
  15. "src/**/*"
  16. ]
  17. }