mirror of https://github.com/Chocobozzz/PeerTube
18 lines
445 B
JSON
18 lines
445 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"stripInternal": true,
|
|
"removeComments": false,
|
|
"declaration": true,
|
|
"outDir": "../packages/types-generator/dist/client/",
|
|
"emitDeclarationOnly": true,
|
|
"composite": true,
|
|
"rootDir": "src/",
|
|
"tsBuildInfoFile": "../packages/types-generator/dist/tsconfig.client.tsbuildinfo"
|
|
},
|
|
"files": [ "src/types/index.ts" ],
|
|
"include": [
|
|
"src/types/**/*"
|
|
]
|
|
}
|