2024-10-17 20:31:18 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"module": "Node16",
|
|
|
|
|
"moduleResolution": "Node16",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"noEmitOnError": false,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"skipLibCheck": true,
|
2024-11-13 02:37:35 +00:00
|
|
|
"lib": ["ES2023"],
|
2024-10-17 20:31:18 +00:00
|
|
|
"strict": true,
|
|
|
|
|
"sourceMap": true,
|
2025-03-02 03:21:17 +00:00
|
|
|
"inlineSources": true,
|
|
|
|
|
|
|
|
|
|
// Set `sourceRoot` to "/" to strip the build path prefix
|
|
|
|
|
// from generated source code references.
|
|
|
|
|
// This improves issue grouping in Sentry.
|
|
|
|
|
"sourceRoot": "/"
|
2024-10-17 20:31:18 +00:00
|
|
|
},
|
|
|
|
|
"include": ["src/index.ts"],
|
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|