General package tools and config files defaults
This is part of the hybrid repro MVC SharePoint example implementation
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.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"
]
}
In this folder execute:
yarn npm publish --access public