mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-04-19 03:00:07 -04:00
# Conflicts: # package-lock.json # package.json # src/App.ts # src/Common/interfaces.ts # src/ConfigBuilder.ts # src/Subreddit/Manager.ts # src/Subreddit/SubredditResources.ts # src/Utils/loggerFactory.ts # src/Web/Client/index.ts # src/Web/Server/server.ts # src/Web/assets/views/events.ejs # src/index.ts # src/util.ts
24 lines
436 B
JSON
24 lines
436 B
JSON
{
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/Web/types",
|
|
"./src/Common/typings"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"coverage",
|
|
"tests/*.ts"
|
|
]
|
|
}
|