tsconfig.json 324 B

12345678910111213
  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": ["node_modules", "dist", "test"]
  13. }