Skip to content

Commit

Permalink
chore: fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilsol committed Jan 15, 2024
1 parent 2483325 commit e462c93
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"scripts": {
"test": "jest --runInBand --testTimeout=30000",
"lint": "eslint src --ext .ts",
"build:tsc": "tsc -d",
"build:tsc": "tsc -p tsconfig.lib.json",
"build:clean": "rimraf lib",
"build": "npm-run-all lint build:clean build:tsc",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
Expand Down
8 changes: 8 additions & 0 deletions packages/cart/tsconfig.lib.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types"
],
},
"extends": "./tsconfig.json"
}
3 changes: 3 additions & 0 deletions packages/grpc-client/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"declaration": true,
"baseUrl": ".",
"strict": true,
"typeRoots": [
"./node_modules/@types"
],
},
"include": ["./src/**/*.ts", "./src/**/*.d.ts"]
}
3 changes: 3 additions & 0 deletions packages/service-config/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"declaration": true,
"baseUrl": ".",
"strict": true,
"typeRoots": [
"./node_modules/@types"
],
},
"include": ["./src/**/*.ts", "./src/**/*.d.ts"]
}

0 comments on commit e462c93

Please sign in to comment.