How to use
Install it:
# with yarn
$ yarn add @nexst/tsconfig-client
# or with npm
$ npm install --save @nexst/tsconfig-client
Then use it:
{
"extends": "@nexst/tsconfig-client",
"compilerOptions": {
"outDir": "build"
}
}
In the @nexst/tsconfig-client
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"lib": ["dom", "es2017"],
"moduleResolution": "node",
"strict": true,
"strictPropertyInitialization": false,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
}
}