mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-13 15:38:12 -05:00
* Much more readable and maintainable with separate files for the big routes * Properly extend express.Request interface
23 lines
438 B
JSON
23 lines
438 B
JSON
{
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"typeRoots": ["./src/Web/types"]
|
|
},
|
|
// "compilerOptions": {
|
|
// "module": "es6",
|
|
// "moduleResolution": "node",
|
|
// "target": "es6",
|
|
// "sourceMap": true,
|
|
// "allowSyntheticDefaultImports": true
|
|
// },
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|