From f23cd8d4ba9a2e10a469523455289dc057c8a1b2 Mon Sep 17 00:00:00 2001 From: Kirk Lin Date: Mon, 18 Sep 2023 18:09:48 +0800 Subject: [PATCH] style: fix style --- tsconfig.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c149802..3ed9f49 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,29 +1,29 @@ { "compilerOptions": { - "baseUrl": ".", - "module": "ESNext", "target": "ESNext", "lib": ["DOM", "ESNext"], - "strict": true, "jsx": "preserve", - "esModuleInterop": true, - "skipLibCheck": true, - "isolatedModules": true, + "module": "ESNext", "moduleResolution": "node", - "resolveJsonModule": true, - "noUnusedLocals": true, - "strictNullChecks": true, - "allowJs": true, - "forceConsistentCasingInFileNames": true, + "baseUrl": ".", + "paths": { + "~/*": ["src/*"] + }, "types": [ "vitest", "vite/client", "unplugin-icons/types/vue", "@intlify/unplugin-vue-i18n/messages" ], - "paths": { - "~/*": ["src/*"] - } + "resolveJsonModule": true, + "allowJs": true, + "isolatedModules": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "strictNullChecks": true, + "noUnusedLocals": true, + "skipLibCheck": true }, "exclude": ["dist", "node_modules"] }