* chore: Upgrade Sentry in v1, v2 & web * fix: Keep ./instrument to be the first line * Remove eslint-plugin-import (fixed in prettier) * Optimistic removal pending some feedback * Simplified and fixed sentry wrapper * Create instrumentation.ts also in APIv1 * sentry key in main nextConfig is deprecated
8 lines
238 B
JavaScript
8 lines
238 B
JavaScript
const rootConfig = require("../../../packages/config/prettier-preset");
|
|
|
|
module.exports = {
|
|
...rootConfig,
|
|
importOrder: ["^./instrument", ...rootConfig.importOrder],
|
|
importOrderParserPlugins: ["typescript", "decorators-legacy"],
|
|
};
|