@functionless/language-service
v0.0.4
Published
A TypeScript Language Service Plugin that shows Functionless errors in the IDE
Downloads
103
Readme
Functionless Language Service Plugin
The @functionless/language-service
package configures a plugin for the TypeScript language service plugin that adds real-time errors to the IDE for Functionless's semantic errors.
To configure, first install the module as a devDependency.
# if using NPM
npm install --save-dev @functionless/language-service
# if using yarn
yarn add -D @functionless/language-service
Then add as a plugin to your tsconfig.json
.
{
"compilerOptions": {
"plugins": [
{
"name": "@functionless/language-service"
}
]
}
}