From 9819a5a9cb1a3d735269233316a781390372de8c Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Mon, 10 Jan 2022 10:42:18 +0000 Subject: [PATCH] chore: add app/env files --- .eslintignore | 3 +++ .eslintrc | 13 +++++++++++++ .npmrc | 1 + .prettierrc | 7 +++++++ tsconfig.json | 27 +++++++++++++++++++++++++++ 5 files changed, 51 insertions(+) create mode 100644 .eslintignore create mode 100644 .eslintrc create mode 100644 .npmrc create mode 100644 .prettierrc create mode 100644 tsconfig.json diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..e6a8276 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,3 @@ +dist +node_modules +public diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..44240d4 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,13 @@ +{ + "extends": [ + "@antfu" + ], + "rules": { + "no-unused-vars": "off", + "@typescript-eslint/no-unused-vars": "off", + "camelcase": "off" + }, + "plugins": [ + "snakecasejs" + ] +} diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..bf2e764 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +shamefully-hoist=true diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..a5975ce --- /dev/null +++ b/.prettierrc @@ -0,0 +1,7 @@ +{ + "trailingComma": "es5", + "tabWidth": 2, + "semi": false, + "singleQuote": true, + "printWidth": 100 +} \ No newline at end of file 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"] +}