17 lines
377 B
JSON
17 lines
377 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"stripInternal": true,
|
|
"removeComments": false,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./types/"
|
|
},
|
|
"references": [
|
|
{ "path": "./shared/tsconfig.types.json" },
|
|
{ "path": "./server/tsconfig.types.json" },
|
|
{ "path": "./client/tsconfig.types.json" }
|
|
],
|
|
"files": ["./index.ts"],
|
|
}
|
|
|