@cyansalt/tsconfig
v3.0.1
Published
My TypeScript configuration
Readme
@cyansalt/tsconfig
My TypeScript configuration.
Installation
npm install --save-dev @cyansalt/tsconfigUsage
// tsconfig.json
{
"extends": "@cyansalt/tsconfig"
}By default, tsc will not output any files when using the above configuration. The following configuration may be additionally required:
// tsconfig.json
{
"compilerOptions": {
// To emit .js files when compiling
"noEmit": false,
// To emit .d.ts files when compiling
"declaration": true
}
}In addition, you will also need to specify the files to be included (include) or excluded (exclude) yourself.
For more information, see TSConfig.
