0.0.9 • Published 2 years ago
tsconfig-one v0.0.9
tsconfig-one
Highlights
- As strict as possible
- ESM output
- Only TypeScript allowed
- Forces usage of import type
Usage
npm install --save-dev tsconfig-onetsconfig.json
{
  "extends": "tsconfig-one/tsconfig.json",
  "compilerOptions": {
    "outDir": "dist"
  },
  "include": ["src"]
}Application
Recommended additions if your project is an application:
{
  "compilerOptions": {
    "incremental": true
  }
}