Skip to content

Commit

Permalink
chore: tsconfig and eslint options cleanup (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmstss authored Jul 9, 2024
1 parent 4c4d142 commit 1adebbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"ignoreIIFE": true
}
],
"@typescript-eslint/return-await": ["error", "in-try-catch"],
"@typescript-eslint/return-await": "error",
"@typescript-eslint/require-await": "error",
"require-await": "off",
"no-return-await": "off",
Expand Down
8 changes: 2 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": "src",
"baseUrl": "src",
"outDir": "dist",
"outDir": "./dist",
"newLine": "LF",
"sourceMap": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"downlevelIteration": true,
Expand All @@ -29,5 +25,5 @@
"skipDefaultLibCheck": true,
"typeRoots": ["node_modules/@types", "typings"]
},
"exclude": ["node_modules", "tmp"]
"exclude": ["node_modules", "tmp", "dist"]
}

0 comments on commit 1adebbe

Please sign in to comment.