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