1.1.0 • Published 5 years ago

tsconfig-palmerhq v1.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

The Palmer Group tsconfig

Usage

yarn add tsconfig-palmerhq --dev

Then in your project's tsconfig.json:

{
  "extends": "./node_modules/tsconfig-palmerhq/tsconfig.json"
}

What's inside?

{
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "allowUnreachableCode": false,
    "downlevelIteration": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "importHelpers": true,
    "jsx": "react",
    "moduleResolution": "node",
    "noFallthroughCasesInSwitch": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "noUnusedLocals": true,
    "pretty": true,
    "removeComments": true,
    "sourceMap": true,
    "strict": true,
    "strictNullChecks": true,
    "suppressImplicitAnyIndexErrors": true
  }
}

MIT License