mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Also update some GitHub Actions versions. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
13 lines
No EOL
368 B
JSON
13 lines
No EOL
368 B
JSON
{
|
|
"extends": "@tsconfig/node18/tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist", //change the output directory
|
|
"resolveJsonModule": true //to import out json database
|
|
},
|
|
"include": [
|
|
"src/**/*.ts" //which kind of files to compile
|
|
],
|
|
"exclude": [
|
|
"node_modules" //which files or directories to ignore
|
|
]
|
|
} |