build: use @tsconfig/node23 in tsconfig.json file (#660)
Some checks are pending
Build / Build Package (push) Waiting to run
Check / Check Package (push) Waiting to run
Test / Test Package (push) Waiting to run
Test / Test Action (macos-14) (push) Waiting to run
Test / Test Action (ubuntu-24.04) (push) Waiting to run
Test / Test Action (windows-2022) (push) Waiting to run
Test / Test Action With Specified Directories (push) Waiting to run
Test / Test Action Without Run Build (push) Waiting to run
Test / Test Action With Additional Options (push) Waiting to run
Test / Test Action With Custom Generator (push) Waiting to run

Signed-off-by: Alfi Maulana <alfi.maulana.f@gmail.com>
This commit is contained in:
Alfi Maulana 2025-03-25 09:38:32 +07:00 committed by GitHub
parent d701e997a9
commit 7719516f28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 11 additions and 6 deletions

View File

@ -15,6 +15,7 @@
"@eslint/js": "^9.22.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node23": "^23.0.0",
"@types/node": "^22.13.10",
"@vitest/coverage-v8": "^3.0.8",
"eslint": "^9.22.0",

8
pnpm-lock.yaml generated
View File

@ -21,6 +21,9 @@ importers:
'@rollup/plugin-typescript':
specifier: ^12.1.2
version: 12.1.2(rollup@4.36.0)(tslib@2.8.1)(typescript@5.8.2)
'@tsconfig/node23':
specifier: ^23.0.0
version: 23.0.0
'@types/node':
specifier: ^22.13.10
version: 22.13.10
@ -458,6 +461,9 @@ packages:
cpu: [x64]
os: [win32]
'@tsconfig/node23@23.0.0':
resolution: {integrity: sha512-a2qO9QOEWnomKbFFE3XlOJ5za6Sc+XduxQkFpah42enbTPFPaW0QzKw616KDNfmMLPhXMwCw4EHVjcKaFOj/OA==}
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
@ -1534,6 +1540,8 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.36.0':
optional: true
'@tsconfig/node23@23.0.0': {}
'@types/estree@1.0.6': {}
'@types/json-schema@7.0.15': {}

View File

@ -1,12 +1,8 @@
{
"extends": "@tsconfig/node23",
"include": ["src"],
"exclude": ["**/*.test.ts"],
"compilerOptions": {
"exactOptionalPropertyTypes": true,
"strict": true,
"module": "node16",
"moduleResolution": "node16",
"target": "es2022",
"skipLibCheck": true
"module": "node16"
}
}