@exponent-labs/exponent-tranching-idl 0.9.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/index.ts ADDED
@@ -0,0 +1,5 @@
1
+ import * as idl from "./exponent_tranching.json"
2
+ export * from "./exponent_tranching"
3
+
4
+ export const IDL = idl
5
+ export const PROGRAM_ID: string = idl.address
package/tsconfig.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "files": ["src/index.ts", "src/exponent_tranching.ts", "src/exponent_tranching.json"],
3
+ "compilerOptions": {
4
+ "rootDir": "src",
5
+ "sourceMap": true,
6
+ "incremental": true,
7
+ "composite": true,
8
+ "target": "ESNext",
9
+ "module": "CommonJS",
10
+ "declaration": true,
11
+ "outDir": "./build",
12
+ "esModuleInterop": true,
13
+ "forceConsistentCasingInFileNames": true,
14
+ "skipLibCheck": true,
15
+ "resolveJsonModule": true
16
+ },
17
+ "include": ["src/**/*"]
18
+ }