mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
- Updates to ESLint v10 and fixes lint failures. - Aligns tsconfig on Node 20, which is the current minimum required Node version. - Adds package-lock.json files to source control to avoid future random failures when dependencies update. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
20 lines
474 B
JSON
20 lines
474 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@tsconfig/node20/tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"noUnusedLocals": false,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true
|
|
},
|
|
"include": [
|
|
"src/"
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.*"
|
|
]
|
|
}
|