Skip to content

Commit

Permalink
Merge pull request #4 from supertokens/nemi
Browse files Browse the repository at this point in the history
Change tsconfig
  • Loading branch information
nkshah2 authored Oct 14, 2019
2 parents c9d63c9 + 5e34460 commit 2373a91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
Expand Down Expand Up @@ -33,6 +34,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @constant
* @type {string}
Expand Down Expand Up @@ -238,7 +240,7 @@ var Lock = /** @class */ (function () {
Lock.waiters = undefined;
return Lock;
}());
export default Lock;
exports.default = Lock;
/**
* @function lockCorrector
* @returns {void}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"noImplicitThis": true,
"module": "es6",
"module": "commonJS",
"moduleResolution": "node"
},
"compileOnSave": true
Expand Down

0 comments on commit 2373a91

Please sign in to comment.