Skip to content

Commit f7f78e1

Browse files
willwashburnclaude
andcommitted
chore: extract to standalone repo
- Expand tsconfig.json from monorepo extends to self-contained compiler options - Update package.json repository URL to standalone repo - Add typescript to devDependencies - Add .gitignore Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 13eb4b7 commit f7f78e1

3 files changed

Lines changed: 21 additions & 6 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
dist/
3+
*.tsbuildinfo
4+
.env
5+
.env.*

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
"jose": "^6.1.3"
2929
},
3030
"devDependencies": {
31+
"typescript": "^5.8.0",
3132
"vitest": "^3.2.4"
3233
},
3334
"publishConfig": {
3435
"access": "public"
3536
},
3637
"repository": {
3738
"type": "git",
38-
"url": "git+https://github.com/AgentWorkforce/relay.git",
39-
"directory": "packages/credential-proxy"
39+
"url": "git+https://github.com/AgentWorkforce/credential-proxy.git"
4040
}
4141
}

tsconfig.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
{
2-
"extends": "../../tsconfig.json",
32
"compilerOptions": {
4-
"outDir": "./dist",
5-
"rootDir": "./src",
3+
"target": "ES2022",
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
66
"lib": ["ES2022"],
77
"types": ["node"],
8-
"isolatedModules": true
8+
"strict": true,
9+
"esModuleInterop": true,
10+
"skipLibCheck": true,
11+
"forceConsistentCasingInFileNames": true,
12+
"resolveJsonModule": true,
13+
"isolatedModules": true,
14+
"outDir": "./dist",
15+
"rootDir": "./src",
16+
"declaration": true,
17+
"declarationMap": true,
18+
"sourceMap": true
919
},
1020
"include": ["src/**/*"],
1121
"exclude": ["node_modules", "dist", "**/*.test.ts"]

0 commit comments

Comments
 (0)