Files
pnpm/__utils__/tsconfig/package.json
2025-11-13 15:44:27 +01:00

42 lines
945 B
JSON

{
"name": "@pnpm/tsconfig",
"description": "pnpm's TypeScript configuration",
"private": true,
"version": "1000.0.0",
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",
"url": "https://www.kochan.io/"
},
"license": "MIT",
"main": "tsconfig.json",
"homepage": "https://github.com/pnpm/pnpm/blob/main/__utils__/tsconfig#readme",
"repository": "https://github.com/pnpm/pnpm/tree/main/__utils__/tsconfig",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"devDependencies": {
"@pnpm/tsconfig": "workspace:*"
},
"keywords": [
"pnpm",
"pnpm11"
],
"engines": {
"node": ">=14.6"
},
"files": [
"lib",
"!*.map"
],
"funding": "https://opencollective.com/pnpm",
"scripts": {
"test": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix",
"prepublishOnly": "pnpm run compile"
},
"exports": {
".": "./tsconfig.json"
}
}