Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteenkamp89 committed Nov 1, 2024
1 parent 843ca23 commit a51cf4e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
"node": ">=18.0.0"
},
"scripts": {
"build-tsc": "tsc",
"build": "tsup src/index.ts --format esm --dts",
"build": "tsc",
"bundle": "tsup src/index.ts --format esm --dts",
"dev": "tsup src/index.ts --format esm --watch --dts",
"lint": "pnpm run type-check && eslint \"src/**/*.ts*\"",
"type-check": "tsc",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"check-format": "prettier --check .",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"extends": "@across-toolkit/typescript-config/base.json",
"include": ["src/index.ts"],
"include": ["src"],
"exclude": ["dist"],
"compilerOptions": {
"outDir": "dist",
"sourceMap": true,
"declarationMap": true,
"declaration": true,
"noEmit": true,
"moduleResolution": "Bundler",
"target": "es2022",
"lib": ["es2022", "dom", "dom.iterable"],
Expand Down

0 comments on commit a51cf4e

Please sign in to comment.