feat: add embedchain javascript package (#576)

This commit is contained in:
Taranjeet Singh
2023-09-06 17:22:44 -07:00
committed by GitHub
parent f582d70031
commit 3c3d98b9c3
44 changed files with 20073 additions and 0 deletions

15
embedchain-js/tsconfig.json Executable file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es6",
"module": "CommonJS",
"strict": true,
"outDir": "dist",
"rootDir": "embedchain",
"sourceMap": true,
"declaration": true,
"declarationDir": "types",
"esModuleInterop": true
},
"include": ["embedchain/**/*.ts"],
"exclude": ["node_modules", "dist"]
}