diff --git a/tsconfig.json b/tsconfig.json index e6721b7..0d5cda3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,10 @@ { "compilerOptions": { /* Language and Environment */ - "target": "ES2020", + "target": "ES2022", /* Modules */ + "module": "NodeNext", + "moduleResolution": "NodeNext", "outDir": "./lib/", "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, @@ -12,6 +14,5 @@ "skipLibCheck": true /* Skip type checking all .d.ts files. */, "declaration": true /* Generate .d.ts files for every TypeScript or JavaScript file inside your project. */ }, - "extends": "@tsconfig/node18/tsconfig.json", "exclude": ["node_modules", "lib", "tests", "local_testing"] }