tsconfig-extends
Version:
load tsconfig compiler-options, support `extends` field
41 lines (40 loc) • 999 B
JSON
{
"name": "tsconfig-extends",
"version": "1.0.1",
"description": "load tsconfig compiler-options, support `extends` field",
"keywords": [
"compiler-options",
"extends",
"tsconfig",
"typescript"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/ikatyang/tsconfig-extends",
"homepage": "https://github.com/ikatyang/tsconfig-extends#readme",
"author": "ikatyang",
"license": "MIT",
"scripts": {
"test": "jest --config ./jest.json",
"lint": "tslint -p ./tsconfig.json --type-check",
"prepublish": "yarn run build",
"prebuild": "rm -rf ./lib",
"build": "tsc -p tsconfig.build.json"
},
"devDependencies": {
"@types/jest": "19.2.3",
"@types/node": "7.0.22",
"codecov": "2.2.0",
"jest": "20.0.4",
"ts-jest": "20.0.4",
"tslint": "5.3.2",
"tslint-config-ikatyang": "0.6.0",
"typescript": "2.3.3"
},
"engines": {
"node": ">= 4"
},
"files": [
"/lib/**/*"
]
}