Skip to content

Commit

Permalink
Use 2-spaces indentation for tsconfig.json files
Browse files Browse the repository at this point in the history
Signed-off-by: Jerrylum <serverofjerry@gmail.com>
  • Loading branch information
Jerrylum committed Mar 14, 2024
1 parent a572ac8 commit 072c3a3
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 72 deletions.
36 changes: 18 additions & 18 deletions apis/fabric-contract-api/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
*
* SPDX-License-Identifier: Apache-2.0
*/
{
"compilerOptions": {
{
"compilerOptions": {
"types": ["./types/"],
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": [
"esnext",
]
},
"include": [
"lib/**/*",
"test/**/*"
],
"exclude": [
"node_modules/**/*"
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": [
"esnext",
]
},
"include": [
"lib/**/*",
"test/**/*"
],
"exclude": [
"node_modules/**/*"
]
}
34 changes: 17 additions & 17 deletions apis/fabric-shim-api/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@
*
* SPDX-License-Identifier: Apache-2.0
*/
{
"compilerOptions": {
{
"compilerOptions": {
"types": ["./types/"],
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": [
"esnext",
]
},
"files": [
"types/index.d.ts"
],
"exclude": [
"node_modules/**/*"
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": [
"esnext",
]
},
"files": [
"types/index.d.ts"
],
"exclude": [
"node_modules/**/*"
]
}
38 changes: 19 additions & 19 deletions libraries/fabric-ledger/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
* SPDX-License-Identifier: Apache-2.0
*/
{
"compilerOptions": {
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"outDir": "lib",
"rootDir": "src",
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": [
"esnext",
"esnext.asynciterable"
]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules/**/*"
"compilerOptions": {
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"outDir": "lib",
"rootDir": "src",
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": [
"esnext",
"esnext.asynciterable"
]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules/**/*"
]
}
36 changes: 18 additions & 18 deletions libraries/fabric-shim/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
*
* SPDX-License-Identifier: Apache-2.0
*/
{
"compilerOptions": {
{
"compilerOptions": {
"types": ["./types/"],
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": [
"esnext",
]
},
"include": [
"lib/**/*",
"test/**/*"
],
"exclude": [
"node_modules/**/*"
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": [
"esnext",
]
},
"include": [
"lib/**/*",
"test/**/*"
],
"exclude": [
"node_modules/**/*"
]
}

0 comments on commit 072c3a3

Please sign in to comment.