tsconfig.json 341 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ES2015",
  4. "module": "CommonJS",
  5. "declaration": true,
  6. "strict": true,
  7. "esModuleInterop": true,
  8. "removeComments": true,
  9. "rootDir": "src",
  10. "outDir": "dist"
  11. },
  12. "exclude": [
  13. "node_modules",
  14. "dist",
  15. "test"
  16. ]
  17. }