mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 19:58:08 +08:00
29 lines
733 B
JSON
29 lines
733 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"lib": ["es6","DOM"],
|
|
|
|
// or higher
|
|
"target": "ES2020",
|
|
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist/src",
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
"*": ["node_modules/*", "src/types/*"],
|
|
},
|
|
|
|
"inlineSources": true,
|
|
|
|
// Set `sourceRoot` to "/" to strip the build path prefix
|
|
// from generated source code references.
|
|
// This improves issue grouping in Sentry.
|
|
"sourceRoot": "/"
|
|
},
|
|
"include": ["src/","src/**/*", "services/db/supabase.ts", "utils/utils.ts", "services/db/supabaseEmbeddings.ts", "utils/EventEmmitter.ts", "src/services/queue-service.ts"]
|
|
}
|