LinkUp-Bot-Lib/tsconfig.json

25 lines
582 B
JSON
Raw Permalink Normal View History

2024-07-12 15:32:07 -04:00
{
"compilerOptions": {
2024-07-12 16:56:17 -04:00
"module": "CommonJS",
"target": "ESNext",
2024-07-12 15:32:07 -04:00
"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",
2024-07-12 16:56:17 -04:00
],
"ts-node": {
"esm": true
}
2024-07-12 15:32:07 -04:00
}