Skip to content

Commit 4baa430

Browse files
fix(sourcemaps): Embed sources inline into sourcemaps
Closes #3485 Closes #3465 Closes #3466
1 parent fdd950e commit 4baa430

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@
6565
"node": ">=4.0.0"
6666
},
6767
"license": "MIT",
68-
"main": "lib/index.js",
68+
"main": "release/ui-router-angularjs.js",
6969
"jsnext:main": "lib-esm/index.js",
7070
"typings": "lib/index.d.ts",
7171
"dependencies": {
72-
"@uirouter/core": "5.0.5"
72+
"@uirouter/core": "=5.0.6"
7373
},
7474
"peerDependencies": {
7575
"angular": ">=1.2.0"

tsconfig.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
"allowSyntheticDefaultImports": true,
1010
"outDir": "lib",
1111
"declaration": true,
12-
"sourceMap": true,
13-
"skipLibCheck": true
12+
"skipLibCheck": true,
13+
"inlineSourceMap": true,
14+
"inlineSources": true
1415
},
1516
"files": [
1617
"src/index.ts",

0 commit comments

Comments
 (0)