discord-bot/tsconfig.json

29 lines
618 B
JSON
Raw Normal View History

2020-05-01 23:35:33 -06:00
{
2022-12-31 02:05:32 -07:00
"extends": "@tsconfig/node18/tsconfig.json",
2020-05-01 23:35:33 -06:00
"compilerOptions": {
2022-09-14 02:30:27 -06:00
"module": "esnext",
2020-05-01 23:35:33 -06:00
"noImplicitAny": true,
2020-05-02 20:17:51 -06:00
"strictNullChecks": true,
2022-12-31 02:05:32 -07:00
"resolveJsonModule": true,
2020-05-01 23:35:33 -06:00
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
2022-12-31 02:05:32 -07:00
"esModuleInterop": true,
2021-10-22 01:43:32 -06:00
"lib": [
"es2018",
"dom"
2022-09-14 02:30:56 -06:00
],
"typeRoots": [
"./typings",
"./node_modules/@types/"
],
2020-05-01 23:35:33 -06:00
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}