This repository was archived by the owner on Aug 7, 2021. It is now read-only. 
 -  
-   Notifications  You must be signed in to change notification settings 
- Fork 40
feat(Vue): add support for TypeScript #734
   Merged  
     Merged  
 Changes from all commits
 Commits 
  Show all changes 
  3 commits   Select commit Hold shift + click to select a range 
  File filter
Filter by extension
Conversations
 Failed to load comments.  
    Loading  
 Jump to
  Jump to file  
  Failed to load files.  
    Loading  
 Diff view
Diff view
There are no files selected for viewing
   This file contains hidden or 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 | 
|---|---|---|
|  | @@ -74,30 +74,31 @@ | |
| "generate-android-snapshot": "./bin/generate-android-snapshot" | ||
| }, | ||
| "dependencies": { | ||
| "@angular-devkit/core": "~7.1.0", | ||
| "awesome-typescript-loader": "~5.2.1", | ||
| "clean-webpack-plugin": "~1.0.0", | ||
| "copy-webpack-plugin": "~4.6.0", | ||
| "css-loader": "~1.0.0", | ||
| "extract-text-webpack-plugin": "~3.0.2", | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one wasn't working with Webpack 4, does it now? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch! It doesn't work and it is not used in the configs anymore. I will remove it. | ||
| "global-modules-path": "2.0.0", | ||
| "minimatch": "3.0.4", | ||
| "nativescript-hook": "0.2.4", | ||
| "nativescript-worker-loader": "~0.9.0", | ||
| "proxy-lib": "0.4.0", | ||
| "raw-loader": "~0.5.1", | ||
| "request": "2.88.0", | ||
| "resolve-url-loader": "~3.0.0", | ||
| "sass-loader": "~7.1.0", | ||
| "schema-utils": "0.4.5", | ||
| "semver": "5.4.1", | ||
| "shelljs": "0.6.0", | ||
| "tapable": "1.0.0", | ||
| "ts-loader": "^5.3.1", | ||
| "uglifyjs-webpack-plugin": "~1.2.5", | ||
| "webpack": "~4.27.0", | ||
| "webpack-cli": "~3.1.1", | ||
| "webpack-bundle-analyzer": "~3.0.2", | ||
| "webpack-sources": "~1.3.0", | ||
| "clean-webpack-plugin": "~1.0.0", | ||
| "copy-webpack-plugin": "~4.6.0", | ||
| "raw-loader": "~0.5.1", | ||
| "css-loader": "~1.0.0", | ||
| "nativescript-worker-loader": "~0.9.0", | ||
| "extract-text-webpack-plugin": "~3.0.2", | ||
| "uglifyjs-webpack-plugin": "~1.2.5", | ||
| "@angular-devkit/core": "~7.1.0", | ||
| "resolve-url-loader": "~3.0.0", | ||
| "awesome-typescript-loader": "~5.2.1", | ||
| "sass-loader": "~7.1.0" | ||
| "webpack-cli": "~3.1.1", | ||
| "webpack-sources": "~1.3.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@ngtools/webpack": "~7.1.0", | ||
|  | ||
   This file contains hidden or 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   
      Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.    
 
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we can remove this now :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is still used in the webpack config for {N} + TypeScript apps. I will try to migrate that config to
ts-loaderas well and remove theawesome-typescript-loader.