Gathering detailed insights and metrics for vue-ts-loader
Gathering detailed insights and metrics for vue-ts-loader
Gathering detailed insights and metrics for vue-ts-loader
Gathering detailed insights and metrics for vue-ts-loader
npm install vue-ts-loader
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
91 Stars
373 Commits
9 Forks
5 Watching
1 Branches
13 Contributors
Updated on 25 Jan 2024
JavaScript (69.49%)
TypeScript (30.25%)
Vue (0.15%)
HTML (0.12%)
Cumulative downloads
Total Downloads
Last day
0%
33
Compared to previous day
Last week
12.2%
294
Compared to previous week
Last month
9.4%
1,281
Compared to previous month
Last year
-45.7%
13,063
Compared to previous year
Type-check your script in your Vue-loader. Easier importing .ts file in vue's SFC.
Tutorials and examples can be found here.
npm install vue-ts-loader
You will also need to install TypeScript if you have not already.
npm install typescript
You also need install vue-loader and friends. Please refer to vue-loader's documentation.
Use webpack like normal, including webpack --watch
and webpack-dev-server
, or through another
build system using the Node.js API.
The current version is compatible with TypeScript 2.0.
Create or update webpack.config.js
like so:
1module.exports = { 2 entry: './app.vue', 3 output: { 4 filename: 'bundle.js' 5 }, 6 resolve: { 7 // Add `.ts` and `.vue` as a resolvable extension. 8 extensions: ['', '.ts', '.vue'] 9 }, 10 module: { 11 loaders: [ 12 // all files with a `.ts` or `.tsx` extension will be handled by `ts-loader` 13 { test: /\.vue$/, loader: 'vue-loader' }, 14 { test: /\.tsx?$/, loader: 'vue-ts-loader' } 15 ] 16 }, 17 vue: { 18 loaders: { 19 ts: 'vue-ts-loader' 20 }, 21 // important for cooperating with vue-loader 22 esModule: true 23 }, 24}
1{ 2 "compilerOptions": { 3 "target": "es5", 4 "sourceMap": true 5 }, 6 "exclude": [ 7 "node_modules" 8 ] 9}
The tsconfig.json file controls
TypeScript-related options so that your IDE, the tsc
command, and this loader all share the
same options. TypeScript files from all subdirectories will get included except the ones matching exclude
.
When the build fails (i.e. at least one typescript compile error occured), vue-ts-loader does not propagate the build failure to webpack. The upshot of this is you can fail to notice an erroring build. This is inconvenient; particularly in continuous integration scenarios. If you want to ensure that the build failure is propogated it is advised that you make use of the webpack-fail-plugin. This plugin that will make the process return status code 1 when it finishes with errors in single-run mode. Et voilĂ ! Build failure.
For more background have a read of this issue.
There are two types of options: TypeScript options (aka "compiler options") and loader options.
TypeScript options should be set using a tsconfig.json file. Loader options can be set either
using a query when specifying the loader or through the ts
property in the webpack configuration.
1module.exports = { 2 ... 3 module: { 4 loaders: [ 5 // specify option using query 6 { test: /\.tsx?$/, loader: 'vue-ts-loader?compiler=ntypescript' } 7 ] 8 }, 9 // specify option using `ts` property 10 ts: { 11 compiler: 'ntypescript' 12 } 13}
If you want to speed up compilation significantly you can set this flag.
However, many of the benefits you get from static type checking between
different dependencies in your application will be lost. You should also
set the isolatedModules
TypeScript option if you plan to ever make use
of this.
If true, no console.log messages will be emitted. Note that most error messages are emitted via webpack which is not affected by this flag.
You can squelch certain TypeScript errors by specifying an array of diagnostic codes to ignore.
Allows use of TypeScript compilers other than the official one. Should be
set to the NPM name of the compiler, eg ntypescript
.
Allows you to specify a custom configuration file.
Allows overriding TypeScript options. Should be specified in the same format
as you would do for the compilerOptions
property in tsconfig.json.
Advanced option to force files to go through different instances of the TypeScript compiler. Can be used to force segregation between different parts of your code.
Loading css and other resources is possible but you will need to make sure that
you have defined the require
function in a declaration file.
1declare var require: { 2 <T>(path: string): T; 3 (paths: string[], callback: (...modules: any[]) => void): void; 4 ensure: (paths: string[], callback: (require: <T>(path: string) => T) => void) => void; 5};
Then you can simply require assets or chunks per the webpack documentation.
1require('!style!css!./style.css');
The same basic process is required for code splitting. In this case, you import
modules you need but you
don't directly use them. Instead you require them at split points.
See this example for more details.
Please see the contributer's guide.
MIT License
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More