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 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" + ] } 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,