Skip to content

Commit

Permalink
feat: added tsconfig.build.json
Browse files Browse the repository at this point in the history
  • Loading branch information
alireza-sheikholmolouki committed Jul 12, 2024
1 parent ae75e57 commit 7698081
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @mirohq/cloud-data-import

## 0.3.2
## 0.3.3

### Patch Changes

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mirohq/cloud-data-import",
"version": "0.3.2",
"version": "0.3.3",
"main": "dist/index.js",
"bin": {
"cloud-data-import": "./dist/index.js"
Expand All @@ -19,7 +19,7 @@
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,ts,json,md}\"",
"prepare": "husky",
"build": "tsc && tsc-alias",
"build": "tsc -p tsconfig.build.json && tsc-alias",
"release": "npm run build && changeset publish",
"dev:setup": "npm install && npm run build && npm link",
"dev": "ts-node -r tsconfig-paths/register src/index.ts"
Expand Down
7 changes: 7 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "./src"
},
"exclude": ["tests"]
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"rootDir": ".",
"baseUrl": "./src",
"paths": {
"@/*": ["./*"],
Expand Down

0 comments on commit 7698081

Please sign in to comment.