1.1.2 • Published 5 years ago

@sophonjs/config-tsc v1.1.2

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

@sophonjs/config-tsc

Common TypeScript configuration for SophonJS libraries.

Tool: TypeScript

Supported Version: ^3.2.2

Exposed CLI commands:

  • sophonjs-config-tsc
  • sophonjs-config-build

Usage

Add tsconfig.json:

{
  "extends": "@sophonjs/config-tsc",
  "include": ["src/**/*.ts", "test/**/*.ts"]
}

Add tsconfig.prod.json:

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

Use CLI commands above in package.json:

  "scripts": {
    "tsc": "sophonjs-config-tsc",
    "build": "sophonjs-config-build"
  }