diff --git a/package.json b/package.json index eb2e70dde..c0d0b05bd 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,6 @@ "sinon": "^11.1.2", "ts-node": "^10.9.1", "tsd": "^0.29.0", - "tslib": "^2.5.0", "typescript": "^5" }, "engines": { diff --git a/tsconfig.json b/tsconfig.json index 6e71ac339..2d9df030c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,20 +2,15 @@ "compilerOptions": { "declaration": true, "forceConsistentCasingInFileNames": true, - "importHelpers": true, "module": "Node16", "outDir": "./lib", "pretty": true, - "rootDirs": [ - "./src" - ], + "rootDirs": ["./src"], "strict": true, "target": "ES2022", "allowSyntheticDefaultImports": true, "noErrorTruncation": true, "moduleResolution": "Node16" }, - "include": [ - "./src/**/*" - ] + "include": ["./src/**/*"] }