From 5514902c8331ecf65f30eb83b39d18fc9b45e557 Mon Sep 17 00:00:00 2001 From: yisding <yi.s.ding@gmail.com> Date: Fri, 19 Jan 2024 15:14:40 -0800 Subject: [PATCH] run prettier format:fix --- e2e/tsconfig.json | 8 ++++---- templates/types/simple/express/tsconfig.json | 4 ++-- templates/types/streaming/express/tsconfig.json | 4 ++-- templates/types/streaming/nextjs/tsconfig.json | 10 +++++----- tsconfig.json | 6 +++--- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/e2e/tsconfig.json b/e2e/tsconfig.json index e45598cb..ce21a4de 100644 --- a/e2e/tsconfig.json +++ b/e2e/tsconfig.json @@ -1,12 +1,12 @@ { "extends": "../../../tsconfig.json", "compilerOptions": { - "tsBuildInfoFile": "./lib/.e2e.tsbuildinfo" + "tsBuildInfoFile": "./lib/.e2e.tsbuildinfo", }, "include": ["./**/*.ts"], "references": [ { - "path": ".." - } - ] + "path": "..", + }, + ], } diff --git a/templates/types/simple/express/tsconfig.json b/templates/types/simple/express/tsconfig.json index bc819cab..b7687912 100644 --- a/templates/types/simple/express/tsconfig.json +++ b/templates/types/simple/express/tsconfig.json @@ -5,6 +5,6 @@ "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true, - "moduleResolution": "node" - } + "moduleResolution": "node", + }, } diff --git a/templates/types/streaming/express/tsconfig.json b/templates/types/streaming/express/tsconfig.json index bc819cab..b7687912 100644 --- a/templates/types/streaming/express/tsconfig.json +++ b/templates/types/streaming/express/tsconfig.json @@ -5,6 +5,6 @@ "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true, - "moduleResolution": "node" - } + "moduleResolution": "node", + }, } diff --git a/templates/types/streaming/nextjs/tsconfig.json b/templates/types/streaming/nextjs/tsconfig.json index 40c136b8..b3f86129 100644 --- a/templates/types/streaming/nextjs/tsconfig.json +++ b/templates/types/streaming/nextjs/tsconfig.json @@ -15,14 +15,14 @@ "incremental": true, "plugins": [ { - "name": "next" - } + "name": "next", + }, ], "paths": { - "@/*": ["./*"] + "@/*": ["./*"], }, - "forceConsistentCasingInFileNames": true + "forceConsistentCasingInFileNames": true, }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], } diff --git a/tsconfig.json b/tsconfig.json index 8c2c4944..ecd08fe5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,14 +6,14 @@ "strict": true, "resolveJsonModule": true, "esModuleInterop": true, - "skipLibCheck": true + "skipLibCheck": true, }, "include": [ "create-app.ts", "index.ts", "./helpers", "questions.ts", - "package.json" + "package.json", ], - "exclude": ["dist"] + "exclude": ["dist"], } -- GitLab