tsconfig.json 332 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "module": "CommonJS",
  5. "strict": true,
  6. "outDir": "dist",
  7. "rootDir": "embedchain",
  8. "sourceMap": true,
  9. "declaration": true,
  10. "declarationDir": "types",
  11. "esModuleInterop": true
  12. },
  13. "include": ["embedchain/**/*.ts"],
  14. "exclude": ["node_modules", "dist"]
  15. }