From 53d5bdc08b5ec858f7f34dda0b37cb7b438e4159 Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Thu, 14 Oct 2021 15:44:10 +0100 Subject: [PATCH] chore: add env --- .eslintignore | 3 +++ .eslintrc | 13 +++++++++++++ netlify.toml | 17 +++++++++++++++++ tsconfig.json | 28 ++++++++++++++++++++++++++++ 4 files changed, 61 insertions(+) create mode 100644 .eslintignore create mode 100644 .eslintrc create mode 100755 netlify.toml 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/netlify.toml b/netlify.toml new file mode 100755 index 0000000..0512635 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,17 @@ +[build.environment] + NPM_FLAGS = "--prefix=/dev/null" + NODE_VERSION = "14" + +[build] + publish = "dist" + command = "npx pnpm i --store=node_modules/.pnpm-store && npx pnpm run build" + +[[redirects]] + from = "/*" + to = "/index.html" + status = 200 + +[[headers]] + for = "/manifest.webmanifest" + [headers.values] + Content-Type = "application/manifest+json" \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..abcdd07 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "module": "ESNext", + "target": "es2016", + "lib": ["DOM", "ESNext"], + "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/*"], + }, + "allowJs": true, + }, + "exclude": ["dist", "node_modules"] +}