Files
discord-ollama/tsconfig.json
Kevin Dang 89c19990fa slash commands integrated
* sample env and late version incr

* added slash command compatibility

* updated command name

* updated environment sample

* updated interaction comment
2024-01-31 10:28:02 -08:00

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"]
}