mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
990a2e85bf
Implement support for GitHub codespaces and VSCode devcontainers --------- Co-authored-by: timothycarambat <rambat1010@gmail.com> Co-authored-by: Sean Hatfield <seanhatfield5@gmail.com>
15 lines
244 B
JSON
15 lines
244 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2020"
|
|
},
|
|
"include": [
|
|
"./endpoints/**/*",
|
|
"./models/**/*",
|
|
"./utils/**/*",
|
|
"./swagger/**/*",
|
|
"index.js"
|
|
],
|
|
"exclude": ["node_modules", "storage"]
|
|
}
|