mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-24 18:45:09 +00:00
14 lines
No EOL
432 B
JSON
14 lines
No EOL
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6", //default is es5
|
|
"module": "commonjs",//CommonJs style module in output
|
|
"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
|
|
]
|
|
} |