@reallyland/tsconfig

TypeScript configuration file for The Really Project

Usage no npm install needed!

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

README

@reallyland/tsconfig

TypeScript configuration file for The Really Project


Buy Me A Coffee tippin.me Follow me

Version Node version MIT License

Downloads Total downloads Packagephobia Bundlephobia

Code of Conduct

TypeScript configuration file for The Really Project, works for either browser or Node.js.

Table of contents

Pre-requisites

  • TypeScript >= 4.1.3
  • [Optional for browser] Node.js >= 14.15.3
  • [Optional for browser] NPM >= 6.14.9 (NPM comes with Node.js so there is no need to install separately.)

Setup

Install

# Install via NPM
$ npm install --save @reallyland/tsconfig

Usage

Note that the following fields are required after extending the sharable tsconfig:

  • compilerOptions.rootDir
  • compilerOptions.outDir
  • compilerOptions.declarationDir
  • include
  • exclude

Node.js

tsconfig.json

{
  "extends": "@reallyland/tsconfig",
  "compilerOptions": {
    "rootDir": "src",
    "outDir": "dist",
    "declarationDir": "dist"
  },
  "include": ["src/**/*.ts"],
  "exclude": ["dist"]
}

[Optional] tsconfig.prod.json

{
  "extends": "@reallyland/tsconfig",
  "compilerOptions": {
    "rootDir": "src",
    "outDir": "dist",
    "declarationDir": "dist"
  },
  "include": ["src/*.ts"],
  "exclude": ["src/test/**/*.ts", "src/demo/**/*.ts"]
}

Browser

Main difference is that there are dom and dom.iterable are added in the lib field of /browser/tsconfig.json to provide typings for web platform APIs.

tsconfig.json

{
  "extends": "@reallyland/tsconfig/browser",
  "compilerOptions": {
    "rootDir": "src",
    "outDir": "dist",
    "declarationDir": "dist"
  },
  "include": ["src/**/*.ts"],
  "exclude": ["dist"]
}

License

MIT License © Rong Sen Ng (motss)