mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-12 07:08:02 -05:00
25 lines
449 B
JSON
25 lines
449 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",
|
|
"_site"
|
|
]
|
|
}
|