1.0.0 • Published 2 years ago

@dimerjs/preset-ts v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

npm-image license-image synk-image

DimerJS Preset Typescript

This module contains a preset configuration for typescript.

Usage

Install the package from npm registry as follows

npm i -D @dimerjs/preset-ts
# yarn
yarn add -D @dimerjs/preset-ts

and then setup your config file to extend the base config

tsconfig.json

{
  "display": "DimerJS",
  "extends": "./node_modules/@dimerjs/preset-ts/tsconfig",
  "compilerOptions": {
    "outDir": "./build",
    "rootDir": "./",
    "incremental": false
  },
  "include": ["**/*"],
  "exclude": ["node_modules", "../../build"]
}