From 92cd29dc7168876330eb15652bee4fd021e7e4d4 Mon Sep 17 00:00:00 2001 From: Mayank Date: Sun, 29 Mar 2026 16:18:09 +0530 Subject: [PATCH 1/3] chore: add promptshield to gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 7cb074bc..c9bd410d 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ coverage # temporary files tsup.config.bundled* + +# Promptshield +.promptshield From 45845f6281967400381dbf85a12066ae951623f0 Mon Sep 17 00:00:00 2001 From: Mayank Date: Sun, 29 Mar 2026 16:18:13 +0530 Subject: [PATCH 2/3] chore: add rootDir to tsconfig --- lib/tsconfig-build.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/tsconfig-build.json b/lib/tsconfig-build.json index 66cc4082..d6d9a8d9 100644 --- a/lib/tsconfig-build.json +++ b/lib/tsconfig-build.json @@ -2,6 +2,7 @@ // using tsc for type declarations as "Note that declaration files generated by any tool other than tsc are not guaranteed to be error-free, so it's a good idea to test the output with tsc" - https://tsup.egoist.dev/#generate-declaration-file "extends": "@repo/typescript-config/react-library.json", "compilerOptions": { + "rootDir": "./src", "outDir": "dist", "noEmit": false, "emitDeclarationOnly": true, From 52ef28260cf451a66a7b96c3ddefd885ce8e0b54 Mon Sep 17 00:00:00 2001 From: Mayank Date: Sun, 29 Mar 2026 16:18:17 +0530 Subject: [PATCH 3/3] chore: update vscode extensions --- .vscode/extensions.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 6315e5c1..bd1c9b7e 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,3 +1,6 @@ -{ - "recommendations": ["esbenp.prettier-vscode", "mayank1513.trello-kanban-task-board"] +{ + "recommendations": [ + "mayank1513.promptshield", + "mayank1513.trello-kanban-task-board" + ] }