mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-19 04:37:53 +00:00
eed285f9de
quick update of the langchainjs example to quiet down some dependency security scanner noise Signed-off-by: Dave Lee <dave@gray101.com>
17 lines
379 B
JSON
17 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"]
|
|
}
|