0.1.0 • Published 7 years ago
@linaj/plugin-typescript v0.1.0
@linaj/plugin-typescript
Official TypeScript plugin for lazy.
Introduction
This plugin use ts-loader to transpile TypeScript files, it also uses fork-ts-checker-webpack-plugin to perform type-checking. .ts .tsx and .vue files are supported.
Install
yarn add @linaj/plugin-typescript typescript --devHow to use
module.exports = {
plugins: [
{
resolve: '@linaj/plugin-typescript',
options: {}
}
]
}Then add a tsconfig.json in your project:
{
"compilerOptions": {
"target": "es5",
"strict": true,
"module": "es2015",
"moduleResolution": "node"
}
}Options
lintOnSave
- Type:
boolean - Default:
true
Lint TS files with ts-lint at compile time, you need to create a tslint.json in your project.
0.1.0
7 years ago