Skip to content

Commit 016f1e4

Browse files
committed
try es6 for module
1 parent 0f593ff commit 016f1e4

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

packages/bolt-connection/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"compilerOptions": {
33
"target": "ES5",
44
"lib": ["ES6"],
5+
"module": "es6",
56
"noImplicitAny": true,
67
"noImplicitReturns": true,
78
"strictNullChecks": true,

packages/core/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"compilerOptions": {
33
"target": "ES5",
44
"lib": ["ES6"],
5+
"module": "es6",
56
"noImplicitAny": true,
67
"noImplicitReturns": true,
78
"strictNullChecks": true,

packages/neo4j-driver-lite/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"compilerOptions": {
33
"target": "ES5",
44
"lib": ["ES6"],
5+
"module": "es6",
56
"noImplicitAny": true,
67
"noImplicitReturns": true,
78
"strictNullChecks": true,

packages/neo4j-driver/gulpfile.babel.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ gulp.task('nodejs', function () {
5353
.pipe(ts({
5454
target: 'ES5',
5555
lib: ['ES6'],
56+
module: 'es6',
5657
noImplicitAny: true,
5758
noImplicitReturns: true,
5859
strictNullChecks: true,

packages/neo4j-driver/test/browser/karma-chrome.conf.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports = function (config) {
2222
compilerOptions: {
2323
target: 'ES5',
2424
lib: ['ES6'],
25+
module: 'es6',
2526
noImplicitAny: true,
2627
noImplicitReturns: true,
2728
strictNullChecks: true,

packages/neo4j-driver/test/browser/karma-firefox.conf.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ module.exports = function (config) {
2323
compilerOptions: {
2424
target: 'ES5',
2525
lib: ['ES6'],
26+
module: 'es6',
2627
noImplicitAny: true,
2728
noImplicitReturns: true,
2829
strictNullChecks: true,

0 commit comments

Comments
 (0)