PeerTube/client/tsconfig.types.json

19 lines
459 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.json",
"compilerOptions": {
"stripInternal": true,
"removeComments": false,
"declaration": true,
"outDir": "../types/client/",
"emitDeclarationOnly": true,
"composite": true,
"rootDir": "src/",
"tsBuildInfoFile": "../types/client.tsbuildinfo"
},
"references": [
{ "path": "../shared/tsconfig.types.json" }
],
"files": ["src/index.ts"],
"include": ["src/index.ts", "src/types/**/*"]
}