1
0
Fork 0
peertube/server/tsconfig.types.json
lutangar b8fa3e8c73 refactor(types): create dedicated folder for types package src
fix guide examples and add types package readme

refactor(tsconfig): move back base tsconfig to base directory
2021-12-16 10:08:43 +01:00

16 lines
307 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../types/dist/server",
"stripInternal": true,
"removeComments": false,
"emitDeclarationOnly": true
},
"references": [
{ "path": "../shared/tsconfig.types.json" }
],
"exclude": [
"tools/",
"tests/"
]
}