@manuth/tsconfig

Provides recommended settings for TypeScript

Usage no npm install needed!

<script type="module">
  import manuthTsconfig from 'https://cdn.skypack.dev/@manuth/tsconfig';
</script>

README

TypeScriptRecommendations

Provides recommended settings for TypeScript

Usage

Simply inherit the settings provided by this module by setting the extends-options of the tsconfig.json-file:

{
    "extends": "@manuth/tsconfig/recommended",
    "compileOnSave": true,
    "compilerOptions": {
        "rootDir": "./src",
        "module": "commonjs",
        "lib": [
            "es7"
        ],
        "target": "es6",
        "outDir": "./lib"
    }
}

By setting this option your tsconfig-file will inherit the recommended.json-settings located in the @manuth/tsconfig-module.

Configurations

Currently TypeScriptRecommendations provides following configuration-presets:

  • @manuth/tsconfig/recommended:
    manuth's recommended settings