This package provides my TypeScript configurations.
Step 1: Install this package
Run npm install @oathompsonjones/ts-config
to add this package to your project.
tsconfig.json
.
Paste the following code:
{
"extends": "@oathompsonjones/ts-config"
}
You can also include extra options like this:
{
"extends": "@oathompsonjones/ts-config",
"include": [
"src"
],
"compilerOptions": {
"outDir": "build"
}
}