Compare commits

..

No commits in common. "ef9f75240d4178cc49ac6c87be3234217b763641" and "831f0ff74cd467b1c28f7d0d363bf7161c5c9f4b" have entirely different histories.

2 changed files with 18 additions and 8 deletions

View File

@ -1,10 +1,12 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es2016", "target": "es2016",
"module": "commonjs", "module": "commonjs",
"outDir": "./dist", "outDir": "./dist",
"strict": true, "strict": true,
"esModuleInterop": true, "esModuleInterop": true,
"inlineSourceMap": true "inlineSourceMap": true,
} "experimentalDecorators": true,
"emitDecoratorMetadata": true
}
} }

8
tsoa.json Normal file
View File

@ -0,0 +1,8 @@
{
"entryFile": "app.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"spec": {
"outputDirectory": ".",
"specVersion": 3
}
}