fabric-samples/full-stack-asset-transfer-guide/applications/rest-api/tsconfig.json
Mark S. Lewis 0f4f62c340 Use fabric-gateway v1.4
Also update some GitHub Actions versions.

Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
2023-10-25 17:30:29 +09:00

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
]
}