move to nodenext and simplify TS/ESM config

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2026-02-16 12:02:30 +01:00
parent fa21647770
commit 14b5eee617
47 changed files with 129 additions and 137 deletions

View File

@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "es2020",
"moduleResolution": "bundler",
"module": "nodenext",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"isolatedModules": true,
"strict": true,
@@ -12,13 +12,13 @@
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"skipLibCheck": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"./__mocks__/**/*",
"./__tests__/**/*",
"./lib/**/*",
"node_modules"
]