tsconfig: Exclude /pkg folder during build

After running `make cockpit/devel`, the generated files do not pass `npm run build`, outputing failures and making dev console and output of `npm run build` cluttered with errors.

This excludes `/pkg` folder during build time, removing the errors.
This commit is contained in:
regexowl 2025-03-27 14:23:04 +01:00 committed by Klara Simickova
parent 932ad97be9
commit 18f6bc74de

View file

@ -24,5 +24,6 @@
"./src/test/mocks/*"
]
}
}
},
"exclude": ["./pkg"],
}