Skip to content

Commit 3a95807

Browse files
committed
Stop generating source maps and compile with new TS engine
1 parent 57fdb60 commit 3a95807

24 files changed

+789
-816
lines changed

Gruntfile.coffee

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = (grunt) ->
66
pkg = grunt.file.readJSON('package.json')
77

88
# !! Compile configurations
9-
LICENSE = '/*!Copyright(c) CommentCoreLibrary v' + pkg.version +
9+
LICENSE = '/*!Copyright(c) CommentCoreLibrary v' + pkg.version +
1010
' (//github.com/jabbany/CommentCoreLibrary) - Licensed under the MIT License */'
1111
# !! End of config area
1212

@@ -58,8 +58,8 @@ module.exports = (grunt) ->
5858
CMP_ALL = CMP_ALL.concat source
5959

6060
# Generate the core ts targets
61-
CMP_CORE_TS =
62-
'core':
61+
CMP_CORE_TS =
62+
'core':
6363
src: SRC_TS_CORE
6464
outDir: 'src/core/js/'
6565
CMP_CORE_NAME = ['ts:core']
@@ -77,6 +77,7 @@ module.exports = (grunt) ->
7777
ts_config =
7878
options:
7979
target: 'es5'
80+
sourceMap: false
8081
for key,value of CMP_CORE_TS
8182
ts_config[key] = value
8283
for key,value of CMP_KAGEROU_TS

0 commit comments

Comments
 (0)