Files
workflows-ts/tsconfig.json
T
2025-04-22 23:23:07 -07:00

39 lines
882 B
JSON

{
"compilerOptions": {
"rootDir": ".",
"composite": true,
"target": "es2022",
"module": "esnext",
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"exactOptionalPropertyTypes": true,
"strict": true,
"skipLibCheck": true,
"stripInternal": true,
"lib": ["ES2022", "DOM", "DOM.Iterable", "DOM.AsyncIterable"]
},
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.lint-staged.json"
},
{
"path": "./packages/core/tsconfig.test.json"
},
{
"path": "./packages/core/tsconfig.json"
},
{
"path": "./packages/llamaindex/tsconfig.json"
},
{
"path": "./packages/llamaindex/tsconfig.test.json"
}
]
}