fabric-samples/balance-transfer/typescript/tsconfig.json
Kapil Sachdeva c4465100c4 [FAB-6550] Sample app written in typescript
This is a sample application that demonstrates usage of Fabric SDK typings.

Change-Id: I5b9b42c666de51a490043cafe0faac29e4f4a0a4
Signed-off-by: Kapil Sachdeva <ksachdeva17@gmail.com>
2017-12-07 02:08:54 +00:00

27 lines
No EOL
597 B
JSON

{
"compilerOptions": {
"removeComments": false,
"preserveConstEnums": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",
"module": "commonjs",
"target": "es6",
"outDir": "dist",
"baseUrl": ".",
"typeRoots": [
"types",
"node_modules/@types"
]
},
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2
}
}