PeerTube/packages/types-generator/tsconfig.types.json

24 lines
653 B
JSON
Raw Normal View History

{
2021-12-28 10:18:15 +01:00
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"stripInternal": true,
"removeComments": false,
"emitDeclarationOnly": true,
"sourceMap": false,
"outDir": "./dist/",
"baseUrl": "./",
"rootDir": "./src",
2021-12-24 13:16:55 +01:00
"tsBuildInfoFile": "./dist/tsconfig.server.types.tsbuildinfo",
"paths": {
2023-10-04 15:13:25 +02:00
"@server/*": [ "../../server/core/*" ]
}
},
"references": [
{ "path": "../models/tsconfig.types.json" },
{ "path": "../typescript-utils/tsconfig.types.json" },
2021-12-28 10:18:15 +01:00
{ "path": "../../server/tsconfig.types.json" },
{ "path": "./src/client/tsconfig.types.json" }
],
2021-12-24 13:16:55 +01:00
"files": ["./src/index.ts"]
}