mirror of
https://github.com/run-llama/LlamaIndexTS.git
synced 2026-07-15 14:55:41 -04:00
d8ac8d385d
Co-authored-by: Marcus Schiesser <mail@marcusschiesser.de>
29 lines
598 B
JSON
29 lines
598 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "./lib",
|
|
"tsBuildInfoFile": "./lib/.tsbuildinfo",
|
|
"incremental": true,
|
|
"composite": true
|
|
},
|
|
"ts-node": {
|
|
"files": true,
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"models/openai/live/browser/open-ai-realtime",
|
|
"**/browser/**"
|
|
]
|
|
}
|