Skip to content

Commit 9554aea

Browse files
committed
update build setup
1 parent 33f45e4 commit 9554aea

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/client.test.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { Client } from "./client";
2-
import { endpoint, API_TOKEN } from "../examples/config";
2+
3+
const endpoint = "wss://api-staging.zerion.io";
4+
const API_TOKEN = "Zerion.0JOY6zZTTw6yl5Cvz9sdmXc7d5AhzVMG";
35

46
describe("Client", () => {
57
test("instantiates", () => {

tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
2+
"include": ["src"],
3+
"exclude": ["examples"],
24
"compilerOptions": {
35
"target": "es6",
46
"module": "commonjs",
57
"moduleResolution": "node",
8+
"declaration": true,
69
"strict": true,
710
"noUnusedLocals": true,
811
"noUnusedParameters": true,

0 commit comments

Comments
 (0)