1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00
Daggerbot-TS/tsconfig.json
2022-11-12 11:58:11 +11:00

18 lines
476 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"target": "ESNext",
"module": "CommonJS",
"baseUrl": "./",
"rootDir": "src/",
"outDir": "dist/",
"moduleResolution": "node",
"typeRoots": [ "node_modules/@types" ],
},
"include": [ "./**/*.ts" ],
"exclude": [ "dist", "node_modules" ],
}