@exponent-labs/meteora-idl 0.0.3

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/tsconfig.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "files": [
3
+ "src/index.ts",
4
+ "src/meteora_amm.json",
5
+ "src/meteora_vault.json",
6
+ "src/meteora_vault.ts",
7
+ "src/meteora_amm.ts"
8
+ ],
9
+ "compilerOptions": {
10
+ "rootDir": "src",
11
+ "sourceMap": true,
12
+ "incremental": true /* Save .tsbuildinfo files to allow for incremental compilation of projects. */,
13
+ "composite": true /* Enable constraints that allow a TypeScript project to be used with project references. */,
14
+ "target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
15
+ "module": "CommonJS" /* Specify what module code is generated. */,
16
+ "declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
17
+ "outDir": "./build" /* Specify an output folder for all emitted files. */,
18
+ "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
19
+ "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
20
+ "skipLibCheck": true /* Skip type checking all .d.ts files. */,
21
+ "resolveJsonModule": true
22
+ }
23
+ }