LinkUp-Bot-Lib/tsconfig.json
2024-07-12 23:15:02 +03:00

22 lines
535 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"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",
]
}