mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Create dedicated Typescript "types" configuration file for each "projects". Create a types folder which includes every useful ts definition: - client - server - shared Add tooling to create a proper package, extract dependencies, etc... Add CI Github task. refactor(types): publish types package in release script
17 lines
302 B
JSON
17 lines
302 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../types/server",
|
|
"stripInternal": true,
|
|
"removeComments": false,
|
|
"emitDeclarationOnly": true
|
|
},
|
|
"references": [
|
|
{ "path": "../shared/tsconfig.types.json" }
|
|
],
|
|
"exclude": [
|
|
"tools/",
|
|
"tests/"
|
|
]
|
|
}
|