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