@oathompsonjones/ts-config
v0.0.35
Published
Provides my TypeScript configuration.
Readme
@oathompsonjones/ts-config
This package provides my TypeScript configurations.
How to use a configuration
Step 1: Install this package Run
npm install @oathompsonjones/ts-configto add this package to your project.Step 2: Create your tsconfig.json file Create a file in the root of your project called
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" } }Step 3: You're done!
