feat(core): bootstrap packages/server and document extraction plan (#22492)

This commit is contained in:
Shoubhit Dash
2026-04-15 04:01:45 +05:30
committed by GitHub
parent f6409759e5
commit 6706358a6e
10 changed files with 753 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
"target": "ES2022",
"rootDir": "src",
"outDir": "dist",
"module": "nodenext",
"declaration": true,
"moduleResolution": "nodenext",
"lib": ["es2022", "dom", "dom.iterable"],
"strict": true,
"skipLibCheck": true
},
"include": ["src"]
}