tsconfig.json 282 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "lib": ["ES2017", "DOM"],
  4. "strict": true,
  5. "downlevelIteration": true,
  6. "declaration": true,
  7. "emitDeclarationOnly": true,
  8. "outDir": "lib",
  9. "esModuleInterop": true
  10. },
  11. "exclude": ["src/typeTests.ts"],
  12. "include": ["src/**/*"]
  13. }