We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tsconfig.json
1 parent 7e88b4d commit 445e236Copy full SHA for 445e236
1 file changed
Gruntfile.js
@@ -40,27 +40,17 @@ module.exports = function(grunt) {
40
pkg: grunt.file.readJSON("package.json"),
41
42
ts: {
43
- options: {
44
- passThrough: true,
45
- target: 'es6',
46
- module: 'commonjs',
47
- sourceMap: true,
48
- declaration: false,
49
- removeComments: false,
50
- noImplicitAny: false,
51
- experimentalDecorators: true,
52
- emitDecoratorMetadata: true,
53
- additionalFlags: "--noImplicitUseStrict"
54
- },
55
56
devlib: {
57
- src: ["**/*.ts", "!node_modules/**/*.ts"],
58
- reference: ".d.ts"
+ tsconfig: {
+ passThrough: true
+ }
59
},
60
61
release_build: {
62
- src: ["**/*.ts", "!node_modules/**/*.ts", "test/**/*.ts"],
63
- reference: ".d.ts",
+ },
64
options: {
65
sourceMap: false,
66
removeComments: true
0 commit comments