mirror of
https://github.com/run-llama/LlamaIndexTS.git
synced 2026-07-20 11:34:51 -04:00
23 lines
475 B
JSON
23 lines
475 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"]
|
|
}
|