Skip to content

Commit

Permalink
Simplify tsconfig setup (#564)
Browse files Browse the repository at this point in the history
* Simplify tsconfig setup

* fixup! Simplify tsconfig setup
  • Loading branch information
Murderlon authored Jan 24, 2024
1 parent 08cd425 commit 9bc781a
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 26 deletions.
2 changes: 1 addition & 1 deletion packages/file-store/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "tsconfig/tsconfig.json",
"extends": "../../tsconfig.json",
"include": ["index.ts"],
"compilerOptions": {
"outDir": "./dist"
Expand Down
2 changes: 1 addition & 1 deletion packages/gcs-store/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "tsconfig/tsconfig.json",
"extends": "../../tsconfig.json",
"include": ["index.ts"],
"compilerOptions": {
"outDir": "./dist"
Expand Down
2 changes: 1 addition & 1 deletion packages/s3-store/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "tsconfig/tsconfig.json",
"extends": "../../tsconfig.json",
"include": ["index.ts"],
"compilerOptions": {
"outDir": "./dist"
Expand Down
1 change: 0 additions & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"sinon": "^15.2.0",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"tsconfig": "*",
"typescript": "^5.3.3"
},
"optionalDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "tsconfig/tsconfig.json",
"extends": "../../tsconfig.json",
"include": ["src"],
"compilerOptions": {
"outDir": "./dist"
Expand Down
10 changes: 0 additions & 10 deletions packages/tsconfig/package.json

This file was deleted.

1 change: 0 additions & 1 deletion test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"supertest": "^6.3.4",
"throttle": "^1.0.3",
"ts-node": "^10.9.2",
"tsconfig": "*",
"typescript": "^5.3.3"
}
}
4 changes: 2 additions & 2 deletions test/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "tsconfig/tsconfig.json",
"extends": "../tsconfig.json",
"include": ["e2e.test.ts"],
"compilerOptions": {
"noEmit": true,
"noEmit": true
}
}
File renamed without changes.
8 changes: 0 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1750,7 +1750,6 @@ __metadata:
sinon: "npm:^15.2.0"
supertest: "npm:^6.3.4"
ts-node: "npm:^10.9.2"
tsconfig: "npm:*"
typescript: "npm:^5.3.3"
dependenciesMeta:
"@redis/client":
Expand Down Expand Up @@ -5209,7 +5208,6 @@ __metadata:
supertest: "npm:^6.3.4"
throttle: "npm:^1.0.3"
ts-node: "npm:^10.9.2"
tsconfig: "npm:*"
typescript: "npm:^5.3.3"
languageName: unknown
linkType: soft
Expand Down Expand Up @@ -5294,12 +5292,6 @@ __metadata:
languageName: node
linkType: hard

"tsconfig@npm:*, tsconfig@workspace:packages/tsconfig":
version: 0.0.0-use.local
resolution: "tsconfig@workspace:packages/tsconfig"
languageName: unknown
linkType: soft

"tslib@npm:^1.11.1, tslib@npm:^1.8.1":
version: 1.14.1
resolution: "tslib@npm:1.14.1"
Expand Down

0 comments on commit 9bc781a

Please sign in to comment.