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

18 lines
600 B
JSON

{
"transpileOnly": true,
"compilerOptions": {
"esModuleInterop": true,
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ESNext",
"module": "NodeNext",
"baseUrl": "./",
"rootDir": "src/",
"outDir": "dist/",
"moduleResolution": "Node",
"typeRoots": [ "node_modules/@types", "./src/typings" ],
},
"include": [ "node_modules/@types", "src/**/*" ],
"exclude": [ "dist", "node_modules" ],
}