1403517067
tsc without --project flag fails to find tsconfig.json when run from a nested package directory inside a Docker COPY layer that overlays files after deps install. Use explicit --project . to ensure tsc finds the local tsconfig.json regardless of working directory context. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
23 lines
426 B
JSON
23 lines
426 B
JSON
{
|
|
"name": "@groombook/types",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"default": "./dist/index.js",
|
|
"types": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --project .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"license": "AGPL-3.0-only"
|
|
}
|