LinkUp-Bot-Lib/tsconfig.json

23 lines
565 B
JSON
Raw Normal View History

2024-07-12 15:32:07 -04:00
{
"compilerOptions": {
"module": "commonjs",
"target": "ESNext",
"sourceMap": true,
"declaration": true,
"declarationDir": "./lib/",
"outDir": "./lib/",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["./types", "./node_modules/@types"],
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules",
]
}