Skip to content

Latest commit

 

History

History

typescript-config

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Nexim TypeScript Config

NPM Version npm bundle size Build & Lint & Test NPM Downloads NPM License

Overview

This is a base TypeScript configuration for Nexim projects.

installation

yarn add -D @nexim/typescript-config

Usage

Create a tsconfig.json file in the root of your project:

{
  "extends": "@nexim/typescript-config",
  "compilerOptions": {
    "rootDir": "src",
    "outDir": "dist"
  },
  "include": ["src/**/*.ts"]
}