Skip to content

Commit

Permalink
fix(build): use tsc instead of tsup
Browse files Browse the repository at this point in the history
  • Loading branch information
saiichihashimoto committed Jan 14, 2024
1 parent 2f96541 commit e887f55
Show file tree
Hide file tree
Showing 7 changed files with 143 additions and 1,120 deletions.
4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json", "./@types/tsconfig.json"]
"project": ["./tsconfig.eslint.json", "./@types/tsconfig.json"]
},
"rules": {
"no-loop-func": "off",
Expand Down Expand Up @@ -453,7 +453,7 @@
"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json", "./@types/tsconfig.json"]
"project": ["./tsconfig.eslint.json", "./@types/tsconfig.json"]
},
"rules": {
"no-var": "off",
Expand Down
2 changes: 1 addition & 1 deletion lint-staged.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const prettierCmd = `prettier --ignore-unknown --write --cache`;
/**
* @type {import('lint-staged').Config}
*/
export default {
module.exports = {
"*.{gif,jpeg,jpg,png,svg}": ["imagemin-lint-staged"],
"*.{js,jsx,ts,tsx}": [eslintCmd],
"*": [prettierCmd],
Expand Down
Loading

0 comments on commit e887f55

Please sign in to comment.