8b03e2ce1a
Create dedicated Typescript "types" configuration file for each "projects". Create a types folder which includes every useful ts definition: - client - server - shared Add tooling to create a proper package, extract dependencies, etc... Add CI Github task. refactor(types): publish types package in release script
9 lines
184 B
JSON
9 lines
184 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../types/shared",
|
|
"stripInternal": true,
|
|
"removeComments": false,
|
|
"emitDeclarationOnly": true
|
|
}
|
|
}
|