Skip to content
Snippets Groups Projects
Commit 1d994328 authored by Glenn Vorhes's avatar Glenn Vorhes
Browse files

inline source maps

parent cda694f6
No related branches found
No related tags found
No related merge requests found
/**
* Created by glenn on 7/5/2017.
*/
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGF5ZXJzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXHJcbiAqIENyZWF0ZWQgYnkgZ2xlbm4gb24gNy81LzIwMTcuXHJcbiAqL1xyXG4iXX0=
\ No newline at end of file
......@@ -17,7 +17,7 @@
"typedoc": "typedoc --excludePrivate --mode file --out doc src",
"webpack": "node_modules\\.bin\\webpack -w",
"webpack-prod": "node_modules\\.bin\\webpack -p -w",
"tsc": "node_modules\\.bin\\tsc -d -w --rootDir ./src --outDir ./dist",
"tsc": "node_modules\\.bin\\tsc -d -w --rootDir ./src ",
"karma": "node_modules\\.bin\\karma start"
},
"author": "TOPS Lab",
......
/**
* Created by glenn on 7/5/2017.
*/
......@@ -5,10 +5,14 @@
"module": "commonjs",
"target": "es5",
// "sourceMap": true,
// "sourceRoot": "src",
"inlineSourceMap": true,
"inlineSources": true,
"jsx": "preserve",
"noEmitOnError": true
"noEmitOnError": true,
"rootDir": "src",
"outDir": "dist"
// "baseUrl": "src"
},
"include": [
"src/**/*"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment