1
0
Fork 0
peertube/packages/types-generator/tsconfig.types.json

24 lines
653 B
JSON
Raw Normal View History

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