express helloworld

This commit is contained in:
Peace
2025-06-05 00:02:11 +09:00
parent 62d67e3bf7
commit 315bcb23a7
4 changed files with 173 additions and 0 deletions

20
letsStart/tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
//* https://www.staging-typescript.org/tsconfig
{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES5",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./src",
"incremental": true
},
"include": ["src/**/*"]
}