Skip to content

Commit

Permalink
Fixing linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gudmdharalds committed Nov 20, 2023
1 parent 7dc04bd commit 6d4bf9d
Showing 1 changed file with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"lib": ["es2021"],
"lib": [ "es2021" ],
"module": "node16",
"strict": true,
"esModuleInterop": true,
Expand All @@ -21,23 +21,11 @@
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"*": [
"./types/*",
"./node_modules/@types/node/*"
]
"*": [ "./types/*", "./node_modules/@types/node/*" ]
},
// It's worth enabling this, I promise!
"noImplicitAny": true
},
"include": [
"src",
"helpers",
"config",
"__tests__",
"__fixtures__"
],
"exclude": [
"**/*.js",
"codegen.ts"
]
"include": [ "src", "helpers", "config", "__tests__", "__fixtures__" ],
"exclude": [ "**/*.js", "codegen.ts" ]
}

0 comments on commit 6d4bf9d

Please sign in to comment.