mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2025-12-12 03:46:08 -05:00
29 lines
747 B
JSON
29 lines
747 B
JSON
{
|
|
"compilerOptions": {
|
|
// Dependent on node version
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"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,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
// Decompile .ts to .js into a folder named build
|
|
"outDir": "build",
|
|
"rootDir": "src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["node_modules/"]
|
|
}
|
|
},
|
|
// environment for env vars
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
} |