1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 04:10:59 -05:00
Daggerbot-TS/tsconfig.json
2022-11-17 05:53:42 +11:00

22 lines
668 B
JSON

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