1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2025-01-31 23:09:42 +11:00
Daggerbot-TS/tsconfig.json

19 lines
465 B
JSON
Raw Normal View History

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