mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-14 16:08:02 -05:00
* Implement declaration file for snoowrap errors so they can be imported directly * Implement logging function to handle boilerplate for known error responses (reddit HTTP response, rate limit, etc.)
27 lines
511 B
JSON
27 lines
511 B
JSON
{
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/Web/types",
|
|
"./src/Common/typings"
|
|
]
|
|
},
|
|
// "compilerOptions": {
|
|
// "module": "es6",
|
|
// "moduleResolution": "node",
|
|
// "target": "es6",
|
|
// "sourceMap": true,
|
|
// "allowSyntheticDefaultImports": true
|
|
// },
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|