Skip to content

Commit ffd7e45

Browse files
subinasrbarshathakuri
authored andcommitted
fix(typecheck): fix type issues
1 parent b9137eb commit ffd7e45

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+26404
-359
lines changed

.eslintrc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@
1212
"plugins": [
1313
"postcss-modules"
1414
],
15-
"ignorePatterns": ["./server/"],
15+
"ignorePatterns": [
16+
"./server/",
17+
"src/generated/**",
18+
"**/*.generated.ts",
19+
"**/*.gen.ts"
20+
],
1621
"rules": {
1722
"strict": 1,
1823

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[submodule "server"]
2-
path = server
3-
url = git@github.com:mapswipe/python-mapswipe-workers.git
41
[submodule "backend"]
52
path = backend
63
url = https://github.com/mapswipe/mapswipe-backend

.yarn/install-state.gz

1.11 MB
Binary file not shown.

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

backend

Submodule backend updated 102 files

codegen.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
overwrite: true
22
schema:
3-
- "./server/django/schema.graphql"
3+
- "./backend/schema.graphql"
44
documents:
5-
- "pages/**/*.tsx"
6-
- "pages/**/*.ts"
5+
- "src/**/*.tsx"
6+
- "src/**/*.ts"
77
generates:
8-
./src/generated/types.ts:
8+
./generated/types.ts:
99
plugins:
1010
- "typescript"
1111
- "typescript-operations"
12-
./src/generated/schema.json:
12+
./generated/schema.json:
1313
plugins:
1414
- "introspection"

0 commit comments

Comments
 (0)