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

22 lines
668 B
JSON
Raw Normal View History

2022-11-11 19:58:11 -05:00
{
"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" ],
},
2022-11-11 19:58:11 -05:00
},
"include": [ "node_modules/@types", "src/**/*" ],
2022-11-11 19:58:11 -05:00
"exclude": [ "dist", "node_modules" ],
}