-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimal TypeScript support option added #797
Open
igogrek
wants to merge
29
commits into
vuejs-templates:develop
Choose a base branch
from
igogrek:minimal-typescript-option
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 14 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
be474b0
Added minimal possible configuration option for typescript to work
7cf08a6
TypeScript Vue typings filtered
5df5b7c
Merge branch 'master' into minimal-typescript-option
igogrek 4fd29f8
Merge remote-tracking branch 'upstream/develop' into minimal-typescri…
c7ca1a5
TypeScript unit test support
109ead8
Cleanup
5d4857a
Merge remote-tracking branch 'upstream/master' into minimal-typescrip…
31ae428
Merge branch 'develop' into minimal-typescript-option
150752a
Added Vue.extend for latest TypeScript definitions
e66b836
Removed vue shims
222ba2e
Removed allowSyntheticDefaultImports
ebe7bfd
Added chai TS typings for the unit test
9f06a63
Merge branch 'develop' into minimal-typescript-option
257b542
Put back vue-shims for better IDE support
d587493
Merge branch 'develop' into minimal-typescript-option
5bc2b0b
Vue shims moved to root for Karma to work properly, Jest support added
a6869f2
Merge branch 'develop' into minimal-typescript-option
84d90b4
tsconfig fix for Jest
9cdc05a
Fixed empty lines for when no typescript selected
4fc2e12
Whitespace fix
c5b4755
Merge branch 'develop' into minimal-typescript-option
e121082
Fixes after develop merge
0bbcf97
Cleanup
5d403d9
Added vue extension for better IDE support
0d1633e
Merge branch 'develop' into minimal-typescript-option
1a43702
Merge branch 'develop' into minimal-typescript-option
faac147
Test fixes
2e54c2b
Another test fix
74a6af8
Merge branch 'develop' into minimal-typescript-option
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 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
'use strict' | ||
// Template version: 1.1.1 | ||
// see http://vuejs-templates.github.io/webpack for documentation. | ||
|
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,16 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "es2015", | ||
"moduleResolution": "node", | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"lib": [ | ||
"dom", | ||
"es5", | ||
"es2015.promise" | ||
] | ||
}, | ||
"include": [ | ||
"./src/**/*.ts" | ||
] | ||
} |
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.
not needed anymore I presume
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.
Yes, removed. Thanks.