Skip to content

Commit

Permalink
chore: 🔧 use tsc to lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashRajpurohit committed Aug 27, 2024
1 parent 3d2ae86 commit ebd4dee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/young-kangaroos-flash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@akashrajpurohit/ts-npm-template": patch
---

chore: :wrench: use tsc to lint
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"build:docs": "typedoc --out docs ./src/index.ts",
"dev": "tsup --watch",
"format": "biome check --write ./src",
"lint": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"baseUrl": ".",
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"module": "ESNext",
"module": "Preserve",
"moduleResolution": "Bundler",
"noEmit": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"~/*": ["./src/*"]
},
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "ESNext"
},
Expand Down

0 comments on commit ebd4dee

Please sign in to comment.