feat: rename js files to ts

This commit is contained in:
Dominik Pschenitschni 2022-01-07 15:24:30 +01:00 committed by kolaente
parent 4cff3ebee1
commit 15b67136fe
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
114 changed files with 0 additions and 0 deletions

19
src/sentry.ts Normal file
View file

@ -0,0 +1,19 @@
import {VERSION} from './version.json'
export default async function setupSentry(app, router) {
const Sentry = await import('@sentry/vue')
const {Integrations} = await import('@sentry/tracing')
Sentry.init({
release: VERSION,
app,
dsn: window.SENTRY_DSN,
integrations: [
new Integrations.BrowserTracing({
routingInstrumentation: Sentry.vueRouterInstrumentation(router),
tracingOrigins: ['localhost', /^\//],
}),
],
tracesSampleRate: 1.0,
})
}