Skip to content

Commit

Permalink
chore: use typescript for eslint config file
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwaltz committed Jan 13, 2025
1 parent 29933bb commit c7e0a09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"lint": "eslint . --cache --cache-location ./node_modules/.cache/.eslintcache --max-warnings 0",
"lint": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache --max-warnings 0",
"type-check": "tsc --noEmit",
"test:unit": "vitest",
"test:type-check": "vitest --typecheck.only",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"moduleResolution": "Bundler",
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": ["src", "*.config.ts"]
"include": ["src", "*.config.*"]
}

0 comments on commit c7e0a09

Please sign in to comment.