@olliecaine/tsconfig
v1.0.28
Published
Shared tsconfig.json
Downloads
165
Readme
@olliecaine/tsconfig
Shared tsconfig.json for frontend projects
Install
npm install --save-dev @olliecaine/tsconfigThis config requires TypeScript 4 or later.
Usage
tsconfig.json
{
"extends": "@olliecaine/tsconfig",
"compilerOptions": {
"outDir": "dist"
}
}When you are targeting a higher version of Node.js, check the relevant ECMAScript version and add it as target:
{
"extends": "@olliecaine/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "ES2023"
}
}