/Package-Tools

General package tools like config files defaults

MIT LicenseMIT

Package-Tools

General package tools and config files defaults

This is part of the hybrid repro MVC SharePoint example implementation

Table of content

Config files defaults

tsconfig.json

This package contains a tsconfig.json file to be reused in typescript projects to ensure a common configuration. It enables a common upgrade as well.

tsconfig example

tsconfig.json in your project:

{
  "extends": "@mauriora/package-tools/includes/tsconfig.json",
  "compilerOptions": {
    "outDir": "dist",
    "rootDir": "./src",
    "typeRoots": [
      "./node_modules/@types", "./node_modules/@microsoft"      
    ]
  },
  "include": [
    "src/**/*.ts"
  ]
}

Publish

In this folder execute:

  yarn npm publish --access public