1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00
Daggerbot-TS/tsconfig.json

20 lines
634 B
JSON
Raw Normal View History

2022-11-11 19:58:11 -05:00
{
2023-04-14 06:47:58 -04:00
"transpileOnly": true,
"compilerOptions": {
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2022",
"module": "ESNext",
"baseUrl": "./",
"rootDir": "src/",
"outDir": "dist/",
"moduleResolution": "bundler",
"typeRoots": [ "node_modules/@types", "./src/typings" ],
},
"include": [ "node_modules/@types", "src/" ],
"exclude": [ "node_modules", ".git", "src/config.json", "src/DB-Beta.config.json", "src/Toast-Testbot.config.json" ],
2022-11-11 19:58:11 -05:00
}