anything-llm/server/jsconfig.json
Francisco Bischoff 990a2e85bf
devcontainer v1 (#297)
Implement support for GitHub codespaces and VSCode devcontainers
---------

Co-authored-by: timothycarambat <rambat1010@gmail.com>
Co-authored-by: Sean Hatfield <seanhatfield5@gmail.com>
2024-01-08 15:31:06 -08:00

15 lines
244 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020"
},
"include": [
"./endpoints/**/*",
"./models/**/*",
"./utils/**/*",
"./swagger/**/*",
"index.js"
],
"exclude": ["node_modules", "storage"]
}