Skip to content

Commit

Permalink
Simplify tsconfig setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon committed Jan 24, 2024
1 parent 08cd425 commit 4b44f9c
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 18 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.

0 comments on commit 4b44f9c

Please sign in to comment.