Skip to content

Commit

Permalink
feat(sourceMaps): Embed sources in sourcemaps for lib builds (#4175)
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen authored and anotherchrisberry committed Sep 29, 2017
1 parent 9c529c9 commit 14818c9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions app/scripts/modules/amazon/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"rootDir": "./src",
"skipLibCheck": true,
"sourceMap": true,
"inlineSources": true,
"strictNullChecks": false, // should really get to a place where we can turn this on
"target": "es6",
"typeRoots": [
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/modules/core/src/serverGroup/ServerGroup.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import * as ReactGA from 'react-ga';
import { has, get } from 'lodash';
import classNames = require('classnames');
import * as classNames from 'classnames';
import { BindAll } from 'lodash-decorators';
import { Subscription } from 'rxjs/Subscription';

Expand Down
3 changes: 2 additions & 1 deletion app/scripts/modules/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"removeComments": false,
"rootDir": "./src",
"skipLibCheck": true,
"sourceMap": false,
"sourceMap": true,
"inlineSources": true,
"strictNullChecks": false, // should really get to a place where we can turn this on
"target": "es6",
"typeRoots": [
Expand Down
1 change: 1 addition & 0 deletions app/scripts/modules/docker/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"rootDir": "./src",
"skipLibCheck": true,
"sourceMap": true,
"inlineSources": true,
"strictNullChecks": false, // should really get to a place where we can turn this on
"target": "es6",
"typeRoots": [
Expand Down
3 changes: 2 additions & 1 deletion app/scripts/modules/google/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"removeComments": false,
"rootDir": "./src",
"skipLibCheck": true,
"sourceMap": false,
"sourceMap": true,
"inlineSources": true,
"strictNullChecks": false,
"target": "es6",
"typeRoots": [
Expand Down

0 comments on commit 14818c9

Please sign in to comment.