chore: add app/env files

This commit is contained in:
JesusPerez 2022-01-10 10:42:18 +00:00
parent 610444207f
commit 9819a5a9cb
5 changed files with 51 additions and 0 deletions

3
.eslintignore Normal file
View File

@ -0,0 +1,3 @@
dist
node_modules
public

13
.eslintrc Normal file
View File

@ -0,0 +1,13 @@
{
"extends": [
"@antfu"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
"camelcase": "off"
},
"plugins": [
"snakecasejs"
]
}

1
.npmrc Normal file
View File

@ -0,0 +1 @@
shamefully-hoist=true

7
.prettierrc Normal file
View File

@ -0,0 +1,7 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
}

27
tsconfig.json Normal file
View File

@ -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"]
}