@nexst/tsconfig
v1.4.0
Published
A tsconfig.json for a nexst app
Downloads
1
Maintainers
Readme
How to use
Install it:
# with yarn
$ yarn add --dev @nexst/tsconfig
# or with npm
$ npm install --save-dev @nexst/tsconfig
Then use it:
{
"extends": "@nexst/tsconfig",
"compilerOptions": {
"outDir": "build"
}
}
In the @nexst/tsconfig
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"lib": ["dom", "es2017"],
"moduleResolution": "node",
"declaration": true,
"strict": true,
"strictPropertyInitialization": false,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true
}
}