Skip to content

Commit

Permalink
feat: add build code
Browse files Browse the repository at this point in the history
  • Loading branch information
akashrpo committed Feb 28, 2024
1 parent 92b4be0 commit 865c88e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 3 deletions.
2 changes: 2 additions & 0 deletions dataCatalogTypescript/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
src
10 changes: 7 additions & 3 deletions dataCatalogTypescript/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"name": "@rudderlabs/rudder-typer-webapp",
"version": "1.0.0-beta.6",
"version": "1.0.0-beta.8",
"description": "Rudder-Typer analytics libraries are based on your pre-defined tracking plan specifications.",
"main": "./dist/src/cli/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "tsc"
},
"author": "rudderlabs",
"license": "MIT",
"dependencies": {
"rudder-sdk-js": "^2.48.2"
},
"devDependencies": {
"typescript": "^5.3.3"
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions dataCatalogTypescript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"outDir": "dist",
"module": "commonjs",
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true
},
"include": ["./src/**/*"],
"exclude": ["node_modules"]
}

0 comments on commit 865c88e

Please sign in to comment.