2.0.1 • Published 3 years ago
typescript-custom-compiler-options v2.0.1
Typescript strict mode plugin fork
Typescript plugin that allows to use custom tsconfig on text editor. This project is a fork of https://github.com/allegro/typescript-strict-plugin
How to install
Use npm:
npm i --save-dev typescript-custom-compiler-optionsor yarn
yarn add -D typescript-custom-compiler-optionsadd plugin to your tsconfig.json:
{
"compilerOptions": {
...
"strict": false,
"plugins": [
{
"name": "typescript-custom-compiler-options"
}
]
}
}Configuration
{
"compilerOptions": {
...
"strict": false,
"plugins": [
{
"name": "typescript-custom-compiler-options",
"options": {
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
}
}
]
}
}