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
2024-05-05 15:51:55 +10:00

19 lines
465 B
JSON

{
"compilerOptions": {
"skipLibCheck": true,
"removeComments": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"noUnusedParameters": true,
"target": "ES2022",
"module": "ES2022",
"baseUrl": ".",
"rootDir": "src",
"outDir": "dist",
"moduleResolution": "Bundler",
"typeRoots": [ "./src/interfaces.d.ts" ]
},
"include": [ "src" ],
"exclude": [ ".yarn/cache", ".yarn/unplugged", ".git", "src/*.json" ]
}