Skip to content

Commit

Permalink
✨ Add isolatedDeclarations
Browse files Browse the repository at this point in the history
  • Loading branch information
NatoBoram committed Jun 3, 2024
1 parent 4f77f0c commit ebeac19
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 39 deletions.
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"recommendations": [
"davidanson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ The most gigachad project setup for TypeScript.
- Documentation with [TypeDoc](https://github.com/TypeStrong/typedoc)
- Enforce format-on-save in [VSCode](https://github.com/microsoft/vscode)
- Formatting with [Prettier](https://github.com/prettier/prettier)
- Linting with [ESLint](https://github.com/eslint/eslint)
- Package management with [PNPM](https://github.com/pnpm/pnpm)
- Lint code with [ESLint](https://github.com/eslint/eslint)
- Lint markdown with [markdownlint](https://github.com/DavidAnson/markdownlint)
- Package management with [pnpm](https://github.com/pnpm/pnpm)
- Publish it with a GitHub Workflow
- Run it with [`tsx`](https://github.com/privatenumber/tsx)
- Run it with [tsx](https://github.com/privatenumber/tsx)
- Run your GitHub Actions locally with [`act`](https://github.com/nektos/act)
- Unit tests with [Vitest](https://github.com/vitest-dev/vitest)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typedoc": "^0.25.13",
"typescript": "~5.4.3",
"typescript": "5.5.0-beta",
"typescript-eslint": "^7.7.1",
"vitest": "^1.4.0"
},
Expand Down
70 changes: 35 additions & 35 deletions pnpm-lock.yaml

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

1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
/* Interop Constraints */
"isolatedModules": true,
"verbatimModuleSyntax": true,
"isolatedDeclarations": true,
"forceConsistentCasingInFileNames": true,

/* Type Checking */
Expand Down

0 comments on commit ebeac19

Please sign in to comment.