@yarn-workspaces-example/tsconfig
v0.0.5
Published
This package provides some shared TypeScript configurations for all workspaces in the monorepo.
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 && yarnThen, add the following to your tsconfig.json:
{
"extends": "@yarn-workspaces-example/tsconfig",
"compilerOptions": {
"paths": {
"@/*": ["./src/*"] // Optional path mappings
}
},
"include": [
"**/*.ts"
]
}