@anmiles/tsconfig

3.0.2 • Public • Published

@anmiles/tsconfig

Base tsconfig for all projects


Installation

npm install --save-dev @anmiles/tsconfig

Usage examples

tsconfig.json

{
	"extends": "./node_modules/@anmiles/tsconfig/tsconfig.json",

	"compilerOptions": {
		"rootDir": "./src",
		"outDir": "./dist",
	},

	"include": [
		"src",
	],
}

tsconfig.build.json

{
	"extends": "./tsconfig.json",

	"exclude": [
		"**/__tests__/",
	],
}

tsconfig.test.json

{
	"extends": "./tsconfig.json",

	"compilerOptions": {
		"verbatimModuleSyntax": false
	}
}

/@anmiles/tsconfig/

    Package Sidebar

    Install

    npm i @anmiles/tsconfig

    Weekly Downloads

    8

    Version

    3.0.2

    License

    MIT

    Unpacked Size

    7.53 kB

    Total Files

    7

    Last publish

    Collaborators

    • anmiles