From ff21f3acf95bf302aa0b9e0b272bcc13d5c7bd8b Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Mon, 10 Jan 2022 11:31:11 +0000 Subject: [PATCH] chore: add app/env files --- tsconfig.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..08032a5 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "module": "ESNext", + "target": "es2016", + "lib": ["DOM", "ESNext","ES7"], + "strict": true, + "esModuleInterop": true, + "incremental": false, + "skipLibCheck": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "noUnusedLocals": true, + "strictNullChecks": true, + "forceConsistentCasingInFileNames": true, + "types": [ + "vite/client", + "vite-plugin-pages/client", + "vite-plugin-vue-layouts/client" + ], + "paths": { + "~/*": ["src/*"], + "@/*": ["src/components/*"] + } + }, + "exclude": ["dist", "node_modules"] +}