tsc-suppress
Version:
Run the Typescript compiler in transpile-only mode
61 lines (60 loc) • 1.3 kB
JSON
{
"name": "tsc-suppress",
"version": "1.0.7",
"description": "Run the Typescript compiler in transpile-only mode",
"author": "Daniel Zhang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DanielHZhang/tsc-suppress/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"files": [
"bin/**/*",
"dist/**/*"
],
"bin": {
"tsc-suppress": "./bin/tsc-suppress.js"
},
"publishConfig": {
"access": "public"
},
"prettier": "@supersede/prettier-config",
"eslintConfig": {
"extends": "@supersede"
},
"scripts": {
"start": "nodemon src/index.ts",
"build": "rm -rf dist && tsc --project tsconfig.json",
"test": "yarn build && node ./bin/tsc-suppress.js --project tsconfig.test.json",
"prepublishOnly": "yarn build"
},
"dependencies": {
"chalk": "^4",
"minimist": "^1.2.5"
},
"devDependencies": {
"@supersede/eslint-config": "^1.3.0",
"@supersede/prettier-config": "^1.0.1",
"@types/minimist": "^1.2.0",
"@types/node": "^17.0.21",
"eslint": "^8.10.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"typescript": ">=3.0.0"
},
"keywords": [
"typescript",
"tsc",
"compiler",
"transpile-only"
]
}