a1ba5ee093
Replace Supabase auth and search runtime with a local Fastify API, PostgreSQL/PostGIS schema, and local session handling. Scaffold the worker and deep-research foundations while keeping the existing research, dashboard, and map flows running on the new backend.
17 lines
390 B
JSON
17 lines
390 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["node"],
|
|
"rootDir": ".",
|
|
"outDir": "dist-server"
|
|
},
|
|
"include": ["server/**/*.ts", "db/scripts/**/*.ts", "shared/**/*.ts"]
|
|
}
|