Skip to content

Commit cd1b218

Browse files
thomastayAutomated Version Bump
andauthored
Downgraded tsconfig output to ES5, and did package upgrades (#20)
* Downgraded tsconfig output to ES5, and did package upgrades Package upgrades: upgraded webpack-cl and ts-loader to remove warnings Also, moved @types/lodash and ts-loader to dev-deps * ci: version bump to 0.6.27 * ci: version bump to 0.6.28 Co-authored-by: Thomas Tay <[email protected]> Co-authored-by: Automated Version Bump <[email protected]>
1 parent cb1cd36 commit cd1b218

File tree

3 files changed

+3676
-4396
lines changed

3 files changed

+3676
-4396
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/objectstoreprovider",
3-
"version": "0.6.26",
3+
"version": "0.6.28",
44
"description": "A cross-browser object store library",
55
"author": "Mukundan Kavanur Kidambi <[email protected]>",
66
"scripts": {
@@ -24,17 +24,16 @@
2424
"dependencies": {
2525
"@collectable/core": "^5.0.1",
2626
"@collectable/red-black-tree": "^5.0.1",
27-
"@types/lodash": "4.14.116",
2827
"lodash": "^4.17.21",
29-
"regexp-i18n": "^1.3.2",
30-
"ts-loader": "8.0.0"
28+
"regexp-i18n": "^1.3.2"
3129
},
3230
"sideEffects": [
3331
"./src/Promise.ts"
3432
],
3533
"devDependencies": {
3634
"@types/assert": "^1.5.4",
3735
"@types/chai": "^4.2.18",
36+
"@types/lodash": "^4.14.170",
3837
"@types/mocha": "5.2.5",
3938
"@types/sinon": "^5.0.2",
4039
"@typescript-eslint/eslint-plugin": "^4.27.0",
@@ -54,10 +53,11 @@
5453
"node-polyfill-webpack-plugin": "^1.1.3",
5554
"prettier": "^2.3.1",
5655
"sinon": "^6.3.4",
56+
"ts-loader": "^9.2.3",
5757
"ts-node": "^10.0.0",
5858
"typescript": "^4.3.4",
5959
"webpack": "^5.39.1",
60-
"webpack-cli": "^3.1.1"
60+
"webpack-cli": "^4.7.2"
6161
},
6262
"repository": {
6363
"type": "git",

tsconfig.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"compilerOptions": {
33
"declaration": true,
44
"noResolve": false,
5-
"module": "esnext",
5+
"module": "commonjs",
66
"moduleResolution": "node",
7-
"target": "es6",
7+
"target": "es5",
88
"outDir": "dist/",
99
"typeRoots": ["node_modules/@types"],
1010
"downlevelIteration": true,
@@ -17,7 +17,8 @@
1717
"strictNullChecks": true,
1818
"forceConsistentCasingInFileNames": true,
1919
"strict": true,
20-
"sourceMap": true
20+
"sourceMap": true,
21+
"lib": ["es2015", "dom", "es2016"]
2122
},
2223
"filesGlob": ["src/**/*.ts"],
2324
"exclude": ["dist", "node_modules"]

0 commit comments

Comments
 (0)