Skip to content

Commit e5d28ba

Browse files
committed
feat: es6 output
1 parent bebdfac commit e5d28ba

File tree

3 files changed

+41
-26
lines changed

3 files changed

+41
-26
lines changed

package-lock.json

Lines changed: 29 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"semver": "^5.5.0",
8888
"teoria": "^2.5.0",
8989
"tmp-promise": "^2.0.2",
90-
"ts-loader": "^6.0.4",
90+
"ts-loader": "^7.0.1",
9191
"ts-node": "^8.4.1",
9292
"typedoc": "^0.15.0",
9393
"typescript": "^3.8.3",

tsconfig.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,27 @@
22
"compileOnSave": true,
33
"compilerOptions": {
44
"strictNullChecks": true,
5-
"target": "es5",
6-
"module": "es2015",
5+
"target": "ES6",
6+
"module": "ES2015",
77
"noImplicitAny": false,
88
"importHelpers": true,
99
"noUnusedLocals": false,
1010
"removeComments": false,
1111
"outDir": "./build/esm",
1212
"sourceMap": true,
1313
"moduleResolution": "node",
14-
"strictPropertyInitialization" : true,
15-
"downlevelIteration" : true,
14+
"strictPropertyInitialization": true,
15+
"downlevelIteration": true,
1616
"experimentalDecorators": true,
17-
"lib": ["es6", "dom", "es2015"],
17+
"lib": [
18+
"es6",
19+
"dom",
20+
"es2015"
21+
],
1822
"baseUrl": "./"
1923
},
2024
"include": [
21-
"Tone/**/*.ts", "test/**/*.ts"
25+
"Tone/**/*.ts",
26+
"test/**/*.ts"
2227
]
2328
}

0 commit comments

Comments
 (0)