Skip to content

Commit f4f558d

Browse files
committed
chore(prettier): let prettier run on tsconfig.json files
1 parent 319f1f8 commit f4f558d

File tree

4 files changed

+5
-18
lines changed

4 files changed

+5
-18
lines changed

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
node_modules
22
.rollup.cache
33
dist
4-
tsconfig.json

packages/benchmark.js-plugin/tsconfig.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@
33
"compilerOptions": {
44
"outDir": "dist",
55
"rootDir": "src",
6-
"typeRoots": [
7-
"node_modules/@types",
8-
"../../node_modules/@types"
9-
]
6+
"typeRoots": ["node_modules/@types", "../../node_modules/@types"]
107
},
11-
"include": [
12-
"src/**/*.ts"
13-
]
8+
"include": ["src/**/*.ts"]
149
}

packages/core/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@
44
"outDir": "dist",
55
"rootDir": "src"
66
},
7-
"include": [
8-
"src/**/*.ts"
9-
]
7+
"include": ["src/**/*.ts"]
108
}

packages/tinybench-plugin/tsconfig.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@
33
"compilerOptions": {
44
"outDir": "dist",
55
"rootDir": "src",
6-
"typeRoots": [
7-
"node_modules/@types",
8-
"../../node_modules/@types"
9-
]
6+
"typeRoots": ["node_modules/@types", "../../node_modules/@types"]
107
},
11-
"include": [
12-
"src/**/*.ts"
13-
]
8+
"include": ["src/**/*.ts"]
149
}

0 commit comments

Comments
 (0)