Skip to content

Commit

Permalink
fix: compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmpinto committed Oct 29, 2024
1 parent 8395169 commit 1ee26a8
Show file tree
Hide file tree
Showing 4 changed files with 257 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ test
src/**.js
coverage
*.log
.DS_Store
.DS_Store
tsconfig.tsbuildinfo
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
],
"type": "module",
"scripts": {
"build": "tsc --build -v",
"build": "tsc --build",
"build:ci": "pnpm run build",
"lint": "eslint 'src/**/*.{js,ts}'",
"format": "prettier . --write",
Expand All @@ -37,13 +37,14 @@
"node": ">=18"
},
"peerDependencies": {
"esbuild": ">=0.18.0"
"esbuild": ">=0.21.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.2.0",
"@types/node": "^22.5.4",
"esbuild": "^0.24.0",
"eslint": "^9.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
Expand Down
250 changes: 250 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowJs": true
"allowJs": true,
"incremental": false
},
"include": ["src/**/*"],
"exclude": ["node_modules/**", "coverage", "src/**/*.spec.ts"]
Expand Down

0 comments on commit 1ee26a8

Please sign in to comment.