@zetavg/tsconfig
v0.0.7
Published
This package provides some shared TypeScript configurations for all workspaces in the monorepo.
Downloads
260
Readme
TypeScript Config
This package provides some shared TypeScript configurations for all workspaces in the monorepo.
Install
yarn add @zetavg/tsconfig --dev && yarn constraints --fix && yarnThen, add the following to your tsconfig.json:
{
"extends": "@zetavg/tsconfig",
"compilerOptions": {
"paths": {
"@/*": ["./src/*"] // Optional path mappings
}
},
"include": [
"**/*.ts"
]
}