anchor/tests/optional/tsconfig.json

13 lines
251 B
JSON
Raw Normal View History

Feat: Optional Positional Accounts (#2101) * optional accounts initial implementation * cargo fmt * panic if Account related traits are run on none * Allow empty accounts to deserialize to None for optional accounts * implement constraints for optional accounts * optional accounts to idl gen * accountstruct helper method * implemented to_account_metas and infos * add test program * Rename optional to is_optional * added more traits * added TryKey error * fix has_one * update prelude * is_optional * add is_optional helper method * Add TryAccountInfos trait * improve constraint parser * initial work on TryToAccountInfo * Rename to TryToAccountInfo * finished implementing tryToAccountInfo * Using program method * Formatting * Fix program function call * Remove function return borrow * Fix access to program field * finished implementing tryToAccountInfo * add exit try_to_account_infos * descriptive ID path * try_to_account_info * fix close constraint * update test files * completed typescript optional accounts implementation * fix try accounts for init * update tests * fix to_account_metas * update tests * fix linting * remove types/node * update yarn.lock maybe? * update optional test * update optional test * update optional rust cli test * fix linting and tests * fix tests * update try_accounts to pass in accs during constraint gen * Add default impl for TryToAccountInfos * Removed TryToAccountInfos trait * Formatting * remove unneccesary traits and improve constraint gen drastically * fix exit generation * clippy * improve cross check error message * improve comments * more comments * update constraints hopefully good now? * add new errors to ts client * add new errors to ts client * update optional test * update anchor ts client * update misc crate * linting * temporarily comment out optional rs tests * update ts * remove local test files * linting * optional client tests * fix other lints to make the test pass * remove comments * remove misc-optional for now * update optional program * update optional program and client tests again * update optional program and client tests again again * added initialize tests that should pass * undo unrelated anchor.toml change * update close on optional program and improve tests * update optional program again. * update optional program and optional tests * fix has one error message * fix client example tests * update lockfile * update lockfile * regenerate lockfile * reset lockfile * reset ts yarn lockfile * update no caching tests * update exit codegen to use generate_optional_check * remove `try_to_account_infos` * update parser to ignore method calls in constraints * refactor and improve optional checks in constraints * add misc-optional program and tests * enable cpi for optional tests * Revert "enable cpi for optional tests" This reverts commit c864cd5d4f019e6bd5f93641e01bd82fc74041d4. * simplify misc tests * update version * fix rust version and resolve merge conflicts * prevent Option on composite accounts * hopefully fixed ts stuff? * hopefully fixed ts stuff? * testing * hopefully done? * update misc test * fix optional tests * fix ts * fix ts again! * linting urg * allow-missing-optionals feature * fix client tests * add bnjs types to tests Co-authored-by: febo <febo@kent.ac.uk> Co-authored-by: Henry-E <henry.elder@adaptcentre.ie>
2022-12-12 07:32:59 -08:00
{
"compilerOptions": {
"types": ["mocha", "chai"],
"typeRoots": ["./node_modules/@types"],
"lib": ["es2015"],
"module": "commonjs",
"target": "es6",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true
}
}