Skip to content

Commit

Permalink
chore: improve tsconfig (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mist3rBru committed Nov 30, 2023
1 parent 262d381 commit 9ad7f0a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"dev": "cross-env DEBUG=taze:* esno ./src/cli.ts",
"start": "esno ./src/cli.ts",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"typecheck": "tsc",
"prepublishOnly": "nr build",
"release": "bumpp && pnpm publish --no-git-checks",
"test": "vitest"
Expand Down
12 changes: 8 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
{
"compilerOptions": {
"target": "es2018",
"lib": ["esnext"],
"target": "ESNext",
"lib": ["ESNext"],
"moduleDetection": "force",
"rootDir": ".",
"module": "esnext",
"moduleResolution": "node",
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"taze": ["./src/index.ts"]
},
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"noEmit": true,
"esModuleInterop": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
}
Expand Down

0 comments on commit 9ad7f0a

Please sign in to comment.