Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add snaps-simulator to tsconfig ignore list
  • Loading branch information
Mrtenz committed Sep 9, 2024
commit 9ccd7ce05ae09cdce37729414dfbd39db6e9c202
2 changes: 1 addition & 1 deletion scripts/verify-tsconfig.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
const cwd = pathUtils.dirname(fileURLToPath(import.meta.url))

// These are the packages we expect to _not_ be referenced in the root tsconfig.
const IGNORE_LIST = new Set(['examples', 'test-snaps']);
const IGNORE_LIST = new Set(['examples', 'snaps-simulator', 'test-snaps']);

// Get reference paths from root tsconfig.json
const rootTsconfig = JSON.parse(await fs.readFile('./tsconfig.json', { encoding: 'utf8' }));
Expand Down