README
@abios/typescript-config
Abios TypeScript Configuration
Installation
You'll first need to install TypeScript:
yarn add typescript
Next, install @abios/typescript-config
:
yarn add --dev @abios/typescript-config
Usage
React Project
Enable the configuration by extending your project's tsconfig.json
.
{
"extends": "@abios/typescript-config/index.json",
"compilerOptions": {
"baseUrl": "./src",
"rootDir": "."
},
"include": ["./src/**/*"]
}