mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
This commit implements the TypeScript version of the asset-transfer-ledger-queries Chaincode. Resolves #1232 Signed-off-by: Satoshi Ito <satoshi.ito.tf@hitachi.com>
13 lines
351 B
JavaScript
13 lines
351 B
JavaScript
import js from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(js.configs.recommended, ...tseslint.configs.strictTypeChecked, {
|
|
languageOptions: {
|
|
ecmaVersion: 2023,
|
|
sourceType: 'module',
|
|
parserOptions: {
|
|
project: 'tsconfig.json',
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
});
|