Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ pnpm-debug.log*

# Files generated during component compilation
/lib
*.tsbuildinfo

# test output directories (jest, playwright)
test-results/
Expand Down
3 changes: 2 additions & 1 deletion constellation-tsconfigs/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
"allowSyntheticDefaultImports": true,
// "skipLibCheck" must be true in order to not see errors in the @pega/pcore-pconnect-typedefs files themselves
"skipLibCheck": true
}
},
"files": ["../src/theme.ts"]
}
4 changes: 2 additions & 2 deletions constellation-tsconfigs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// Need to specify typeRoots to find the types and types to constrain
// where to look in @pega (to only get pcore-pconnect-typedefs)
// NOTE: need to point to relative path to node_modules (../)
"typeRoots": ["../node_modules/@types", "../node_modules/@pega"],
"types": ["jest", "@testing-library/jest-dom", "pcore-pconnect-typedefs"]
"typeRoots": ["../node_modules/@types", "../node_modules/@pega", "../node_modules/@testing-library"],
"types": ["jest", "jest-dom", "pcore-pconnect-typedefs"]
}
}
Loading