- package.json: ESM module config - src/index.ts: Broadcast client factory with types, hooks - tsconfig.json: TypeScript configuration
11 lines
210 B
JSON
11 lines
210 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|