Skip to content

Commit 6d88022

Browse files
committed
fix: ensure typecheck is passing
1 parent b1bd277 commit 6d88022

File tree

19 files changed

+29
-119
lines changed

19 files changed

+29
-119
lines changed

migrations.json

Lines changed: 0 additions & 51 deletions
This file was deleted.

packages/base-client-wrapper/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4-
"module": "commonjs",
4+
"module": "Preserve",
5+
"moduleResolution": "bundler",
56
"emitDecoratorMetadata": true,
67
"forceConsistentCasingInFileNames": true,
78
"strict": true,

packages/base-client-wrapper/tsconfig.spec.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../../dist/out-tsc",
5-
"module": "commonjs",
65
"types": ["jest", "node"]
76
},
87
"include": [

packages/hydra-client-wrapper/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4-
"module": "commonjs",
4+
"module": "Preserve",
5+
"moduleResolution": "bundler",
56
"emitDecoratorMetadata": true,
67
"forceConsistentCasingInFileNames": true,
78
"strict": true,

packages/hydra-client-wrapper/tsconfig.spec.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../../dist/out-tsc",
5-
"module": "commonjs",
65
"types": ["jest", "node"]
76
},
87
"include": [
98
"jest.config.ts",
10-
"src/**/*.test.ts",
11-
"src/**/*.spec.ts",
12-
"src/**/*.d.ts",
9+
"src/**/*.ts",
1310
"test/**/*.mock.ts",
1411
"test/**/*.spec.ts"
1512
]

packages/keto-cli/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4-
"module": "commonjs",
4+
"module": "Preserve",
5+
"moduleResolution": "bundler",
56
"forceConsistentCasingInFileNames": true,
67
"strict": true,
78
"noImplicitOverride": true,

packages/keto-cli/tsconfig.lib.json

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,16 @@
33
"compilerOptions": {
44
"outDir": "../../dist/out-tsc",
55
"declaration": true,
6-
"module": "Preserve",
7-
"moduleResolution": "bundler",
8-
"types": [
9-
"node"
10-
],
6+
"types": ["node"],
117
"target": "es2021",
128
"strictNullChecks": true,
139
"noImplicitAny": true,
1410
"strictBindCallApply": true,
1511
"forceConsistentCasingInFileNames": true,
1612
"noFallthroughCasesInSwitch": true
1713
},
18-
"include": [
19-
"src/**/*.ts",
20-
"package.json"
21-
],
22-
"exclude": [
23-
"jest.config.ts",
24-
"src/**/*.spec.ts",
25-
"src/**/*.test.ts"
26-
],
14+
"include": ["src/**/*.ts", "package.json"],
15+
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"],
2716
"references": [
2817
{
2918
"path": "../keto-relations-parser/tsconfig.lib.json"

packages/keto-cli/tsconfig.spec.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../../dist/out-tsc",
5-
"module": "commonjs",
65
"types": ["jest", "node"]
76
},
8-
"include": [
9-
"jest.config.ts",
10-
"src/**/*.test.ts",
11-
"src/**/*.spec.ts",
12-
"src/**/*.d.ts"
13-
]
7+
"include": ["jest.config.ts", "src/**/*.ts", "package.json"]
148
}

packages/keto-client-wrapper/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4-
"module": "commonjs",
4+
"module": "Preserve",
5+
"moduleResolution": "bundler",
56
"emitDecoratorMetadata": true,
67
"forceConsistentCasingInFileNames": true,
78
"strict": true,

packages/keto-client-wrapper/tsconfig.lib.json

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,16 @@
33
"compilerOptions": {
44
"outDir": "../../dist/out-tsc",
55
"declaration": true,
6-
"module": "Preserve",
7-
"moduleResolution": "bundler",
8-
"types": [
9-
"node"
10-
],
6+
"types": ["node"],
117
"target": "es2021",
128
"strictNullChecks": true,
139
"noImplicitAny": true,
1410
"strictBindCallApply": true,
1511
"forceConsistentCasingInFileNames": true,
1612
"noFallthroughCasesInSwitch": true
1713
},
18-
"include": [
19-
"src/**/*.ts"
20-
],
21-
"exclude": [
22-
"jest.config.ts",
23-
"src/**/*.spec.ts",
24-
"src/**/*.test.ts"
25-
],
14+
"include": ["src/**/*.ts"],
15+
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"],
2616
"references": [
2717
{
2818
"path": "../keto-relations-parser/tsconfig.lib.json"

0 commit comments

Comments
 (0)