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>
15 lines
426 B
JSON
15 lines
426 B
JSON
{
|
|
"extends": "@tsconfig/node20/tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["./src/**/*.spec.ts"]
|
|
}
|