* feat(client): realtime client * chore: alpha release * fix: remove os requirement * fix: check if process is defined * fix: ws connection key * fix: outgoing request throttling logic * chore: 0.6.0.alpha.4 release * chore: update realtime demo * chore: update preloaded scene * feat: auth wip * fix: compilation issue * feat: basic auth impl missing error handling * chore: remove console.log prepare 0.6.0 * fix: remove unsused code
15 lines
345 B
JSON
15 lines
345 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"outDir": "../../dist/out-tsc",
|
|
"inlineSources": true,
|
|
"declaration": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"types": ["node"]
|
|
},
|
|
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"],
|
|
"include": ["src/**/*.ts"]
|
|
}
|