tsconfig.json 358 B

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