tsconfig.json 300 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "ES2018",
  4. "module": "ESNext",
  5. "moduleResolution": "node",
  6. "declaration": true,
  7. "outDir": "./dist",
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true
  11. },
  12. "include": ["src/**/*"],
  13. "exclude": ["node_modules", "dist"]
  14. }