mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2025-12-12 11:56:06 -05:00
* sample env and late version incr * added slash command compatibility * updated command name * updated environment sample * updated interaction comment
23 lines
613 B
JSON
23 lines
613 B
JSON
{
|
|
"compilerOptions": {
|
|
// Dependent on node version
|
|
"target": "ES2020",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"strict": true,
|
|
// We must set the type
|
|
"noImplicitAny": true,
|
|
"declaration": false,
|
|
// Will not go through node_modules
|
|
"skipDefaultLibCheck": true,
|
|
"strictNullChecks": true,
|
|
// We can import json files like JavaScript
|
|
"resolveJsonModule": true,
|
|
// Decompile .ts to .js into a folder named dist
|
|
"outDir": "build",
|
|
"rootDir": "src"
|
|
},
|
|
// environment for env vars
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
} |