tsconfig.dHelper.json 638 B

12345678910111213141516171819202122
  1. {
  2. // Change this to match your project
  3. "files": ["src/app/utils/chartHelper.ts"],
  4. "compilerOptions": {
  5. // Generate d.ts files
  6. "declaration": true,
  7. // This compiler run should
  8. // only output d.ts files
  9. "emitDeclarationOnly": false,
  10. // Types should go into this directory.
  11. // Removing this would place the .d.ts files
  12. // next to the .js files
  13. "outDir": "types",
  14. // go to js file when using IDE functions like
  15. // "Go to Definition" in VSCode
  16. "declarationMap": true,
  17. "skipLibCheck": true,
  18. "types": []
  19. },
  20. // "exclude": ["node_modules", "./node_modules", "./node_modules/*"]
  21. }