From 8031504c309b5df7391cf5d181dde778ebe752e4 Mon Sep 17 00:00:00 2001 From: Kirill Sudarushkin Date: Thu, 11 Apr 2024 18:12:29 +0200 Subject: [PATCH] fix prettier error --- examples/jwt-auth/tsconfig.json | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/examples/jwt-auth/tsconfig.json b/examples/jwt-auth/tsconfig.json index 7379c0e33..5d7a09e9d 100644 --- a/examples/jwt-auth/tsconfig.json +++ b/examples/jwt-auth/tsconfig.json @@ -2,10 +2,7 @@ "compilerOptions": { "target": "esnext", "module": "es2020", - "lib": [ - "esnext", - "dom" - ], + "lib": ["esnext", "dom"], "jsx": "preserve", "moduleResolution": "node", "strict": true, @@ -18,10 +15,7 @@ "noImplicitReturns": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, - "typeRoots": [ - "./node_modules/@types", - "./node_modules/@mirohq" - ], + "typeRoots": ["./node_modules/@types", "./node_modules/@mirohq"], "allowJs": true, "incremental": true, "isolatedModules": true, @@ -31,13 +25,6 @@ } ] }, - "include": [ - "src", - "app", - "*.ts", - ".next/types/**/*.ts" - ], - "exclude": [ - "node_modules" - ] + "include": ["src", "app", "*.ts", ".next/types/**/*.ts"], + "exclude": ["node_modules"] }