Skip to content

Commit

Permalink
update typescript to 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
andrej-dyck committed Mar 11, 2024
1 parent f707457 commit 9c09735
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 79 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"pnpm": ">=8.15.0"
},
"devDependencies": {
"@types/node": "20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"@types/node": "20.11.25",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"eslint": "8.57.0",
"typescript": "5.3.3",
"typescript": "5.4.2",
"vitest": "1.3.1",
"zod": "3.22.4"
}
Expand Down
130 changes: 65 additions & 65 deletions pnpm-lock.yaml

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

22 changes: 12 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"compilerOptions": {
"moduleResolution": "NodeNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"outDir": "./dist",

/* Base Options */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2022",
"allowImportingTsExtensions": true,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"composite": true,
"esModuleInterop": true,
"incremental": true,
"isolatedModules": true,
"noEmit": true,
"moduleDetection": "force",
"resolveJsonModule": true,
"skipLibCheck": true,

/* Strictness */
"strict": true,
Expand All @@ -27,11 +30,10 @@
"strictNullChecks": true,

/* Libs */
"lib": ["ES2022"],
"lib": ["ES2023"],
"types": ["node", "./json/index.d.ts"],

"outDir": "./dist"
},
"include": ["./**/*.ts", "./*.d.ts"],
"exclude": [
"node_modules"
]
Expand Down

0 comments on commit 9c09735

Please sign in to comment.