Files
Picsur/shared/tsconfig.json

14 lines
295 B
JSON
Raw Normal View History

2022-02-24 22:56:27 +01:00
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
2022-02-25 22:58:08 +01:00
"target": "ES6",
"module": "CommonJS",
2022-02-24 22:56:27 +01:00
"outDir": "./dist",
"declaration": true,
"emitDecoratorMetadata": true,
"sourceMap": true
},
2022-02-25 12:22:00 +01:00
"include": ["src", "../backend/src/decorators/multipart.dto.ts"]
2022-02-24 22:56:27 +01:00
}