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

19 lines
465 B
JSON
Raw Permalink Normal View History

2022-11-11 19:58:11 -05:00
{
2023-04-14 06:47:58 -04:00
"compilerOptions": {
"skipLibCheck": true,
2023-09-03 23:34:08 -04:00
"removeComments": true,
2023-10-05 07:56:29 -04:00
"noUnusedLocals": true,
2023-04-14 06:47:58 -04:00
"resolveJsonModule": true,
2023-10-05 07:56:29 -04:00
"noUnusedParameters": true,
2023-04-14 06:47:58 -04:00
"target": "ES2022",
2024-05-05 01:51:55 -04:00
"module": "ES2022",
2024-03-07 17:08:09 -05:00
"baseUrl": ".",
"rootDir": "src",
"outDir": "dist",
2024-05-05 01:51:55 -04:00
"moduleResolution": "Bundler",
2023-12-24 10:21:40 -05:00
"typeRoots": [ "./src/interfaces.d.ts" ]
2023-04-14 06:47:58 -04:00
},
"include": [ "src" ],
2024-03-07 17:08:09 -05:00
"exclude": [ ".yarn/cache", ".yarn/unplugged", ".git", "src/*.json" ]
2023-05-20 20:28:44 -04:00
}