25 lines
527 B
JSON
25 lines
527 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2021", "DOM"],
|
|
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"scripts": {
|
|
"start": "ts-node src/index.ts",
|
|
"tsoa": "tsoa spec-and-routes",
|
|
"build": "tsoa spec-and-routes && tsc"
|
|
}
|
|
}
|
|
|