tsconfig.json 359 B

12345678910111213141516
  1. {
  2. "include": ["index.js", "src/*"],
  3. "compilerOptions": {
  4. "target": "ES2020",
  5. "lib": ["ES2020"],
  6. "module": "ES2020",
  7. "moduleResolution": "node",
  8. "outDir": "dist",
  9. "allowJs": true,
  10. "checkJs": true,
  11. "declaration": true,
  12. "emitDeclarationOnly": true,
  13. "allowSyntheticDefaultImports": true,
  14. "skipLibCheck": true
  15. }
  16. }