chore: Setup typescript for the express app

This commit is contained in:
Faruk AYDIN
2021-10-03 18:55:01 +02:00
committed by Ali BARIN
parent 701fc48d6f
commit fbc2b1e00a
10 changed files with 604 additions and 149 deletions

View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*",
"src/types/*"
]
}
},
"include": [
"src/**/*"
]
}