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