mirror of
https://github.com/mudler/LocalAI
synced 2026-04-24 06:47:19 +00:00
quick update of the langchainjs example to quiet down some dependency security scanner noise Signed-off-by: Dave Lee <dave@gray101.com>
16 lines
379 B
JSON
16 lines
379 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"lib": ["ES2022", "DOM"],
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src", "test"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|