This repository was archived by the owner on Dec 30, 2019. It is now read-only.
File tree 4 files changed +3
-31
lines changed
4 files changed +3
-31
lines changed Original file line number Diff line number Diff line change 83
83
}
84
84
},
85
85
"lint-staged" : {
86
- "*.ts" : [
86
+ "src/**/ *.ts" : [
87
87
" vue-cli-service lint --fix" ,
88
88
" prettier --write" ,
89
89
" git add"
90
90
],
91
- "*.vue" : [
91
+ "src/**/ *.vue" : [
92
92
" vue-cli-service lint --fix" ,
93
93
" stylelint" ,
94
94
" prettier --write" ,
Original file line number Diff line number Diff line change 1
1
// https://docs.cypress.io/api/introduction/api.html
2
2
/// <reference types="cypress"/>
3
3
4
- /// <reference types="cypress"/>
5
-
6
4
describe ( "My First Test" , ( ) => {
7
5
it ( "Visits the app root url" , ( ) => {
8
6
cy . visit ( "/" ) ;
Original file line number Diff line number Diff line change 48
48
"exclude" : [
49
49
" node_modules" ,
50
50
" build" ,
51
- " test /e2e"
51
+ " tests /e2e"
52
52
]
53
53
}
Original file line number Diff line number Diff line change @@ -84,32 +84,6 @@ module.exports = {
84
84
return args ;
85
85
} )
86
86
;
87
-
88
- // Disable fork-ts-checker and switch ts-loader to also perform type checking.
89
- // Some optimizations are not applied otherwise, thus...
90
- // Unluckily, this means that we cannot use thread-loader for this ...
91
- config
92
- . plugins
93
- . delete ( "fork-ts-checker" ) ;
94
-
95
- config
96
- . module
97
- . rule ( "ts" )
98
- . uses
99
- . delete ( "thread-loader" ) ;
100
-
101
- config
102
- . module
103
- . rule ( "ts" )
104
- . use ( "ts-loader" )
105
- . options ( {
106
- transpileOnly : false ,
107
- appendTsSuffixTo : [
108
- "\\.vue$"
109
- ] ,
110
- happyPackMode : false ,
111
- allowTsInNodeModules : true
112
- } ) ;
113
87
} ) ;
114
88
}
115
89
} ;
You can’t perform that action at this time.
0 commit comments