Skip to content

Commit 963b879

Browse files
committed
Fix formatting for .json files
1 parent aaebb47 commit 963b879

File tree

2 files changed

+47
-47
lines changed

2 files changed

+47
-47
lines changed

tsconfig.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"compilerOptions": {
3-
"module": "commonjs",
4-
"noImplicitAny": false,
5-
"suppressImplicitAnyIndexErrors": true,
6-
"target": "es6",
7-
"moduleResolution": "node",
8-
"removeComments": false,
9-
"sourceMap": true,
10-
"noLib": false,
11-
"declaration": true,
12-
"outDir": "dist",
13-
"rootDir": "src",
14-
"esModuleInterop": true,
15-
"allowSyntheticDefaultImports": true,
16-
"strict": true,
17-
"forceConsistentCasingInFileNames": true,
18-
"importHelpers": true
19-
// enable this when it works with tslint, or we switch to prettier
20-
// "declarationMap": true
21-
},
22-
"exclude": [
23-
"node_modules",
24-
"src/*_test.ts",
25-
"dist"
26-
],
27-
"include": [
28-
"*.ts",
29-
"src/**/*"
30-
]
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"noImplicitAny": false,
5+
"suppressImplicitAnyIndexErrors": true,
6+
"target": "es6",
7+
"moduleResolution": "node",
8+
"removeComments": false,
9+
"sourceMap": true,
10+
"noLib": false,
11+
"declaration": true,
12+
"outDir": "dist",
13+
"rootDir": "src",
14+
"esModuleInterop": true,
15+
"allowSyntheticDefaultImports": true,
16+
"strict": true,
17+
"forceConsistentCasingInFileNames": true,
18+
"importHelpers": true
19+
// enable this when it works with tslint, or we switch to prettier
20+
// "declarationMap": true
21+
},
22+
"exclude": [
23+
"node_modules",
24+
"src/*_test.ts",
25+
"dist"
26+
],
27+
"include": [
28+
"*.ts",
29+
"src/**/*"
30+
]
3131
}
3232

tslint.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"extends": "tslint:recommended",
3-
"defaultSeverity": "error",
4-
"linterOptions": {
5-
"exclude": [
6-
"src/api.ts",
7-
"dist",
8-
"node_modules"
9-
]
10-
},
11-
"jsRules": {},
12-
"rules": {
13-
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
14-
"interface-name": [true, "never-prefix"],
15-
"object-literal-sort-keys": false,
16-
"object-literal-key-quotes": [true, "as-needed"],
17-
"max-classes-per-file": false
18-
},
19-
"rulesDirectory": []
2+
"extends": "tslint:recommended",
3+
"defaultSeverity": "error",
4+
"linterOptions": {
5+
"exclude": [
6+
"src/api.ts",
7+
"dist",
8+
"node_modules"
9+
]
10+
},
11+
"jsRules": {},
12+
"rules": {
13+
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
14+
"interface-name": [true, "never-prefix"],
15+
"object-literal-sort-keys": false,
16+
"object-literal-key-quotes": [true, "as-needed"],
17+
"max-classes-per-file": false
18+
},
19+
"rulesDirectory": []
2020
}

0 commit comments

Comments
 (0)