Skip to content

Commit bf4fc10

Browse files
committed
fix: fix Gruntfile.js
Fix the targeted es version and remove declarations from excluded libs
1 parent c0a101f commit bf4fc10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports = function(grunt) {
4242
ts: {
4343
options: {
4444
passThrough: true,
45-
target: 'es5',
45+
target: 'es6',
4646
module: 'commonjs',
4747
sourceMap: true,
4848
declaration: false,
@@ -54,7 +54,7 @@ module.exports = function(grunt) {
5454
},
5555

5656
devlib: {
57-
src: ["**/*.ts", "!node_modules/**/*.ts", "!declarations.d.ts"],
57+
src: ["**/*.ts", "!node_modules/**/*.ts"],
5858
reference: ".d.ts"
5959
},
6060

0 commit comments

Comments
 (0)