Skip to content

Commit

Permalink
fix: remove tslib (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley authored Oct 12, 2023
1 parent 220babe commit 5964ca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
"sinon": "^11.1.2",
"ts-node": "^10.9.1",
"tsd": "^0.29.0",
"tslib": "^2.5.0",
"typescript": "^5"
},
"engines": {
Expand Down
9 changes: 2 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/**/*"]
}

0 comments on commit 5964ca6

Please sign in to comment.