Skip to content

Commit 336a55e

Browse files
committed
Reformat
Signed-off-by: Alan Cha <[email protected]>
1 parent 712757a commit 336a55e

File tree

2 files changed

+23
-37
lines changed

2 files changed

+23
-37
lines changed

tsconfig.build.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
"extends": "./tsconfig.json",
3-
"exclude": [
4-
"**/test/*.ts",
5-
"*.spec.ts"
6-
]
2+
"extends": "./tsconfig.json",
3+
"exclude": ["**/test/*.ts", "*.spec.ts"]
74
}

tsconfig.json

Lines changed: 21 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,22 @@
11
{
2-
"compilerOptions": {
3-
"incremental": true,
4-
"outDir": "dist",
5-
"baseUrl": ".",
6-
"target": "es2018",
7-
"module": "esnext",
8-
"moduleResolution": "node",
9-
"lib": [
10-
"esnext"
11-
],
12-
"allowSyntheticDefaultImports": true,
13-
"esModuleInterop": true,
14-
"skipLibCheck": true,
15-
"declaration": true,
16-
"importHelpers": true,
17-
"paths": {
18-
"openapi-to-graphql": [
19-
"packages/openapi-to-graphql/src/index.ts"
20-
],
21-
"openapi-to-graphql-cli": [
22-
"packages/openapi-to-graphql-cli/src/index.ts"
23-
]
24-
}
25-
},
26-
"include": [
27-
"packages"
28-
],
29-
"exclude": [
30-
"**/node_modules",
31-
"**/dist"
32-
]
33-
}
2+
"compilerOptions": {
3+
"incremental": true,
4+
"outDir": "dist",
5+
"baseUrl": ".",
6+
"target": "es2018",
7+
"module": "esnext",
8+
"moduleResolution": "node",
9+
"lib": ["esnext"],
10+
"allowSyntheticDefaultImports": true,
11+
"esModuleInterop": true,
12+
"skipLibCheck": true,
13+
"declaration": true,
14+
"importHelpers": true,
15+
"paths": {
16+
"openapi-to-graphql": ["packages/openapi-to-graphql/src/index.ts"],
17+
"openapi-to-graphql-cli": ["packages/openapi-to-graphql-cli/src/index.ts"]
18+
}
19+
},
20+
"include": ["packages"],
21+
"exclude": ["**/node_modules", "**/dist"]
22+
}

0 commit comments

Comments
 (0)