Skip to content

Commit

Permalink
chore: remove tsconfig.node.json
Browse files Browse the repository at this point in the history
  • Loading branch information
faergeek committed Feb 8, 2024
1 parent 6e4d926 commit be9f813
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 25 deletions.
1 change: 0 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ jobs:
- run: pnpm install --frozen-lockfile
- run: pnpm run format:check
- run: pnpm run lint
- run: pnpm run typecheck
- run: pnpm run build
- run: pnpm test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"sideEffects": false,
"files": [
"dist",
"!dist/**/*.spec.*",
"src",
"!src/**/*.spec.ts"
],
Expand All @@ -25,7 +26,6 @@
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings 0 .",
"typecheck": "tsc -p tsconfig.node.json --noEmit",
"test": "vitest",
"build": "tsc"
},
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"files": ["src/index.ts"],
"exclude": ["src/**/*.spec.ts"],
"include": ["src"],
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["esnext"],
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "bundler",
"noErrorTruncation": true,
Expand All @@ -16,6 +15,7 @@
"noUnusedLocals": true,
"outDir": "dist",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "esnext"
Expand Down
20 changes: 0 additions & 20 deletions tsconfig.node.json

This file was deleted.

0 comments on commit be9f813

Please sign in to comment.