tsconfig.json 378 B

123456789101112131415
  1. {
  2. // Change this to match your project
  3. "include": ["index.js"],
  4. "compilerOptions": {
  5. // Tells TypeScript to read JS files, as
  6. // normally they are ignored as source files
  7. "allowJs": true,
  8. // Generate d.ts files
  9. "declaration": true,
  10. // This compiler run should
  11. // only output d.ts files
  12. "emitDeclarationOnly": true,
  13. "target": "ES6"
  14. }
  15. }