Skip to content

Commit 060d848

Browse files
Update tsconfig
1 parent b0aacb3 commit 060d848

File tree

3 files changed

+19
-23
lines changed

3 files changed

+19
-23
lines changed

package-lock.json

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@
3232
"benchmark": "export HASURA_PATH=localhost:8080; export HASURA_SSL=0; export HASURA_SECRET=myadminsecretkey; DEBUG='materialized-path:*' ts-node benchmarks/index.ts"
3333
},
3434
"devDependencies": {
35+
"@tsconfig/recommended": "^1.0.3",
3536
"jest": "^29.5.0",
3637
"ts-node": "^10.9.1",
37-
"typescript": "5.0.4"
38+
"typescript": "^5.0.4"
3839
},
3940
"peerDependencies": {
4041
"@deep-foundation/hasura": "~0.0.53",

tsconfig.json

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,14 @@
11
{
2+
"extends": "@tsconfig/recommended/tsconfig.json",
3+
"exclude": [
4+
"jest.config.ts",
5+
],
26
"compilerOptions": {
3-
"allowSyntheticDefaultImports": true,
4-
"experimentalDecorators": true,
5-
"sourceMap": true,
6-
"noImplicitAny": false,
7-
"removeComments": true,
87
"jsx": "react",
9-
"module": "commonjs",
10-
"moduleResolution": "node",
11-
"target": "es2015",
12-
"skipLibCheck": true,
13-
"lib": [
14-
"dom",
15-
"es6",
16-
"es7"
17-
],
18-
"resolveJsonModule": true,
19-
"esModuleInterop": true,
20-
"isolatedModules": true,
218
"declaration": true,
22-
"typeRoots": [
23-
"./node_modules/@types"
24-
]
9+
"sourceMap": true,
10+
"noImplicitAny": false,
11+
"strictNullChecks": false,
12+
"strict": false
2513
}
26-
}
14+
}

0 commit comments

Comments
 (0)