From bcacf88e55c7887b105e87bd50e210d739867e15 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 --- .devcontainer/devcontainer.json | 4 ++-- apps/docs/tsconfig.json | 4 ++-- examples/tsconfig.json | 4 ++-- packages/core/tsconfig.json | 4 ++-- packages/create-llama/e2e/tsconfig.json | 8 ++++---- .../templates/types/simple/express/tsconfig.json | 4 ++-- .../types/streaming/express/tsconfig.json | 4 ++-- .../types/streaming/nextjs/tsconfig.json | 10 +++++----- packages/create-llama/tsconfig.json | 6 +++--- tsconfig.json | 16 ++++++++-------- 10 files changed, 32 insertions(+), 32 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 35cb25164..fde9c2812 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,6 +4,6 @@ "ghcr.io/devcontainers/features/node:1": {}, "ghcr.io/devcontainers-contrib/features/turborepo-npm:1": {}, "ghcr.io/devcontainers-contrib/features/typescript:2": {}, - "ghcr.io/devcontainers-contrib/features/pnpm:2": {} - } + "ghcr.io/devcontainers-contrib/features/pnpm:2": {}, + }, } diff --git a/apps/docs/tsconfig.json b/apps/docs/tsconfig.json index bc4d39359..6cdb26a5e 100644 --- a/apps/docs/tsconfig.json +++ b/apps/docs/tsconfig.json @@ -6,6 +6,6 @@ "composite": true, "incremental": true, "outDir": "./lib", - "tsBuildInfoFile": "./lib/.tsbuildinfo" - } + "tsBuildInfoFile": "./lib/.tsbuildinfo", + }, } diff --git a/examples/tsconfig.json b/examples/tsconfig.json index 3e1c08c43..2ce149ac3 100644 --- a/examples/tsconfig.json +++ b/examples/tsconfig.json @@ -6,7 +6,7 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, - "skipLibCheck": true + "skipLibCheck": true, }, - "include": ["./**/*.ts"] + "include": ["./**/*.ts"], } diff --git a/packages/core/tsconfig.json b/packages/core/tsconfig.json index 8ef1bfbe6..ce09c533f 100644 --- a/packages/core/tsconfig.json +++ b/packages/core/tsconfig.json @@ -12,8 +12,8 @@ "strict": true, "lib": ["es2015", "dom"], "target": "ES2015", - "resolveJsonModule": true + "resolveJsonModule": true, }, "include": ["./src"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], } diff --git a/packages/create-llama/e2e/tsconfig.json b/packages/create-llama/e2e/tsconfig.json index e45598cba..ce21a4de0 100644 --- a/packages/create-llama/e2e/tsconfig.json +++ b/packages/create-llama/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/packages/create-llama/templates/types/simple/express/tsconfig.json b/packages/create-llama/templates/types/simple/express/tsconfig.json index bc819cab4..b7687912a 100644 --- a/packages/create-llama/templates/types/simple/express/tsconfig.json +++ b/packages/create-llama/templates/types/simple/express/tsconfig.json @@ -5,6 +5,6 @@ "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true, - "moduleResolution": "node" - } + "moduleResolution": "node", + }, } diff --git a/packages/create-llama/templates/types/streaming/express/tsconfig.json b/packages/create-llama/templates/types/streaming/express/tsconfig.json index bc819cab4..b7687912a 100644 --- a/packages/create-llama/templates/types/streaming/express/tsconfig.json +++ b/packages/create-llama/templates/types/streaming/express/tsconfig.json @@ -5,6 +5,6 @@ "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true, - "moduleResolution": "node" - } + "moduleResolution": "node", + }, } diff --git a/packages/create-llama/templates/types/streaming/nextjs/tsconfig.json b/packages/create-llama/templates/types/streaming/nextjs/tsconfig.json index 40c136b82..b3f861297 100644 --- a/packages/create-llama/templates/types/streaming/nextjs/tsconfig.json +++ b/packages/create-llama/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/packages/create-llama/tsconfig.json b/packages/create-llama/tsconfig.json index 8c2c4944e..ecd08fe57 100644 --- a/packages/create-llama/tsconfig.json +++ b/packages/create-llama/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"], } diff --git a/tsconfig.json b/tsconfig.json index 179a3f95a..3d515939a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,24 +9,24 @@ "outDir": "./lib", "tsBuildInfoFile": "./lib/.tsbuildinfo", "incremental": true, - "composite": true + "composite": true, }, "files": [], "references": [ { - "path": "./apps/docs/tsconfig.json" + "path": "./apps/docs/tsconfig.json", }, { - "path": "./packages/core" + "path": "./packages/core", }, { - "path": "./packages/create-llama" + "path": "./packages/create-llama", }, { - "path": "./packages/create-llama/e2e" + "path": "./packages/create-llama/e2e", }, { - "path": "./examples" - } - ] + "path": "./examples", + }, + ], } -- GitLab