react-express-typescript/server/tsconfig.json
2023-04-05 19:43:37 +08:00

22 lines
460 B
JSON

{
"compilerOptions": {
"lib": [
"es5",
"es6"
],
"target": "es5",
"module": "commonjs",
"esModuleInterop": true,
"outDir": "../dist",
"strict": true,
"strictPropertyInitialization": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"sourceMap": false
},
"include": [
"."
]
}