Skip to content

Commit 94df66a

Browse files
committed
chore(config): update config files with nuxt configs
1 parent f96faf5 commit 94df66a

File tree

3 files changed

+92
-6
lines changed

3 files changed

+92
-6
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_size = 2
5+
indent_style = space
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitignore

+46-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,51 @@
1-
# Library
1+
# Dependencies
22
node_modules
3+
4+
# Logs
5+
*.log*
6+
7+
# Temp directories
8+
.temp
9+
.tmp
10+
.cache
11+
12+
# Yarn
13+
**/.yarn/cache
14+
**/.yarn/*state*
15+
16+
# Generated dirs
317
dist
4-
yarn.lock
518

6-
# Tests
19+
# Nuxt
20+
.nuxt
21+
.output
22+
.vercel_build_output
23+
.build-*
24+
.env
25+
.netlify
26+
27+
# Env
28+
.env
29+
30+
# Testing
31+
reports
732
coverage
33+
*.lcov
34+
.nyc_output
35+
36+
# VSCode
37+
.vscode
38+
39+
# Intellij idea
40+
*.iml
41+
.idea
842

9-
# OS
10-
.DS_Store
43+
# OSX
44+
.DS_Store
45+
.AppleDouble
46+
.LSOverride
47+
.AppleDB
48+
.AppleDesktop
49+
Network Trash Folder
50+
Temporary Items
51+
.apdisk

tsconfig.json

+34-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,40 @@
2525
],
2626
"paths": {
2727
"@vueuse/motion": ["./src/index.ts"],
28-
"@vueuse/motion/*": ["./src/*"]
28+
"@vueuse/motion/*": ["./src/*"],
29+
"#app": [
30+
"./node_modules/.pnpm/[email protected][email protected]/node_modules/nuxt3/dist/app"
31+
],
32+
"#app/*": [
33+
"./node_modules/.pnpm/[email protected][email protected]/node_modules/nuxt3/dist/app/*"
34+
],
35+
"vue-demi": [
36+
"./node_modules/.pnpm/[email protected][email protected]/node_modules/nuxt3/dist/app/compat/vue-demi"
37+
],
38+
"#meta": [
39+
"./node_modules/.pnpm/[email protected][email protected]/node_modules/nuxt3/dist/meta/runtime"
40+
],
41+
"#meta/*": [
42+
"./node_modules/.pnpm/[email protected][email protected]/node_modules/nuxt3/dist/meta/runtime/*"
43+
],
44+
"#imports": [
45+
"./nuxt-playground/.nuxt/imports"
46+
],
47+
"#build": [
48+
"./nuxt-playground/.nuxt"
49+
],
50+
"#build/*": [
51+
"./nuxt-playground/.nuxt/*"
52+
],
53+
"#config": [
54+
"@nuxt/nitro"
55+
],
56+
"#storage": [
57+
"@nuxt/nitro"
58+
],
59+
"#assets": [
60+
"@nuxt/nitro"
61+
]
2962
},
3063

3164
"baseUrl": ".",

0 commit comments

Comments
 (0)