Skip to content

Commit

Permalink
feat: es6 output
Browse files Browse the repository at this point in the history
  • Loading branch information
tambien committed Apr 29, 2020
1 parent bebdfac commit e5d28ba
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 26 deletions.
48 changes: 29 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"semver": "^5.5.0",
"teoria": "^2.5.0",
"tmp-promise": "^2.0.2",
"ts-loader": "^6.0.4",
"ts-loader": "^7.0.1",
"ts-node": "^8.4.1",
"typedoc": "^0.15.0",
"typescript": "^3.8.3",
Expand Down
17 changes: 11 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,27 @@
"compileOnSave": true,
"compilerOptions": {
"strictNullChecks": true,
"target": "es5",
"module": "es2015",
"target": "ES6",
"module": "ES2015",
"noImplicitAny": false,
"importHelpers": true,
"noUnusedLocals": false,
"removeComments": false,
"outDir": "./build/esm",
"sourceMap": true,
"moduleResolution": "node",
"strictPropertyInitialization" : true,
"downlevelIteration" : true,
"strictPropertyInitialization": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"lib": ["es6", "dom", "es2015"],
"lib": [
"es6",
"dom",
"es2015"
],
"baseUrl": "./"
},
"include": [
"Tone/**/*.ts", "test/**/*.ts"
"Tone/**/*.ts",
"test/**/*.ts"
]
}

0 comments on commit e5d28ba

Please sign in to comment.