@axah/tsconfig
v1.1.0
Published
Shared TypeScript config for @axah projects
Downloads
118
Readme
@axah/tsconfig
Shared TypeScript config for @axah projects
Install
$ pnpm add --save-dev @axah/tsconfig
Usage
tsconfig.json
{
"extends": "@axah/tsconfig/tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "."
}
}
When you are targeting a higher version of Node.js, check the relevant ECMAScript version and add it as target
:
{
"extends": "@axah/tsconfig/tsconfig.json",
"compilerOptions": {
"outDir": "lib",
"target": "ES2021"
}
}