-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use typescript to parse source files
Fixes #54
- Loading branch information
Thomas Mair
committed
Jun 24, 2017
1 parent
c2dc887
commit 7dc31ed
Showing
6 changed files
with
208 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"vsicons.presets.angular": false | ||
"vsicons.presets.angular": false, | ||
"prettier.printWidth": 100 | ||
} |
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,12 @@ | ||
var componentWithTemplateLiterals = ` | ||
import {Component} from '@angular/core'; | ||
@Component({ | ||
selector: 'test-component', | ||
templateUrl: \`./some/path/to/file.html\`, | ||
styleUrls: [\`./app/css/styles.css\`] | ||
}) | ||
export class TestComponent {} | ||
`; | ||
|
||
module.exports = componentWithTemplateLiterals; |
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
Oops, something went wrong.