@chapabu/tsconfig-fe

Shared TypeScript configuration for standard FE projects.

Usage no npm install needed!

<script type="module">
  import chapabuTsconfigFe from 'https://cdn.skypack.dev/@chapabu/tsconfig-fe';
</script>

README

tsconfig

Base TypeScript configuration for frontend (i.e. browser based) projects. The config is meant to be used alongside Babel for suitability for Create React App based projects.

Usage

npm install @chapabu/tsconfig-fe or yarn add @chapabu/tsconfig-fe

tsconfig.json

{
  "extends": "@chapabu/tsconfig-fe",
  "exclude": [
    "node_modules/*"
  ],
  "include": [
    "src"
  ]
}