Skip to content

Commit

Permalink
Update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
FreePhoenix888 committed Oct 11, 2023
1 parent b0aacb3 commit 060d848
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 23 deletions.
9 changes: 8 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@
"benchmark": "export HASURA_PATH=localhost:8080; export HASURA_SSL=0; export HASURA_SECRET=myadminsecretkey; DEBUG='materialized-path:*' ts-node benchmarks/index.ts"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"jest": "^29.5.0",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
"typescript": "^5.0.4"
},
"peerDependencies": {
"@deep-foundation/hasura": "~0.0.53",
Expand Down
30 changes: 9 additions & 21 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,14 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"exclude": [
"jest.config.ts",
],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitAny": false,
"removeComments": true,
"jsx": "react",
"module": "commonjs",
"moduleResolution": "node",
"target": "es2015",
"skipLibCheck": true,
"lib": [
"dom",
"es6",
"es7"
],
"resolveJsonModule": true,
"esModuleInterop": true,
"isolatedModules": true,
"declaration": true,
"typeRoots": [
"./node_modules/@types"
]
"sourceMap": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strict": false
}
}
}

0 comments on commit 060d848

Please sign in to comment.