forked from ngxs/store
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update builds to use custom tsconfig (ngxs#297)
* chore: update builds to use custom tsconfig * chore: fix integration * chore: fix build config * fix: tweak config
- Loading branch information
Danny Blue
authored
Apr 16, 2018
1 parent
663d2cb
commit 242c8fa
Showing
4 changed files
with
32 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"angularCompilerOptions": { | ||
"flatModuleId": "AUTOGENERATED", | ||
"flatModuleOutFile": "AUTOGENERATED" | ||
}, | ||
"compilerOptions": { | ||
"paths": { | ||
"@ngxs/*": ["../../builds/*"] | ||
}, | ||
"target": "es2015", | ||
"module": "es2015", | ||
"moduleResolution": "node", | ||
"declaration": true, | ||
"sourceMap": true, | ||
"inlineSources": true, | ||
"skipLibCheck": true, | ||
"importHelpers": true | ||
}, | ||
"files": ["AUTOGENERATED"] | ||
} |