generated from unplugin/unplugin-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtsconfig.json
64 lines (64 loc) · 2.16 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"compilerOptions": {
"jsx": "preserve",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"skipLibCheck": true,
"strict": false,
"allowJs": true,
"noEmit": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"types": ["node"],
"baseUrl": ".",
"paths": {
"~~": ["./playground"],
"~~/*": ["./playground/*"],
"@@": ["./playground"],
"@@/*": ["./playground/*"],
"~": ["./playground"],
"~/*": ["./playground/*"],
"@": ["./playground"],
"@/*": ["./playground/*"],
"assets": ["./playground/assets"],
"public": ["./playground/public"],
"public/*": ["./playground/public/*"],
"#app": ["./playground/node_modules/nuxt/dist/app"],
"#app/*": ["./playground/node_modules/nuxt/dist/app/*"],
"vue-demi": ["./playground/node_modules/nuxt/dist/app/compat/vue-demi"],
"#design-tokens": ["./playground/.nuxt/tokens/index"],
"#design-tokens/style": ["./playground/.nuxt/tokens/tokens"],
"#design-tokens/types": ["./playground/.nuxt/tokens/types"],
"#head": ["./playground/node_modules/nuxt/dist/head/runtime"],
"#head/*": ["./playground/node_modules/nuxt/dist/head/runtime/*"],
"#imports": ["./playground/.nuxt/imports"],
"#build": ["./playground/.nuxt"],
"#build/*": ["./playground/.nuxt/*"],
"#components": ["./playground/.nuxt/components"],
"#pinceau/theme": ["./playground/.nuxt/pinceau/index.ts"],
"#pinceau/utils": ["./playground/.nuxt/pinceau/utils.ts"],
"#pinceau/definitions": ["./playground/.nuxt/pinceau/definitions.ts"],
"pinceau.css": ["./playground/.nuxt/pinceau/theme/index.css"],
"pinceau": ["./src/index.ts"],
"pinceau/runtime": ["./src/runtime.ts"],
"pinceau/vite": ["./src/vite.ts"],
"pinceau/types": ["./src/types/index.ts"],
"@src/utils/*": ["./src/utils/*"]
}
},
"include": [
"./playground/.nuxt/nuxt.d.ts",
"./src/**/*",
"./playground/**/*",
"./test/**/*",
"./src/types/vue-shim.d.ts",
"./docs",
"./build"
],
"vueCompilerOptions": {
"plugins": [
"./dist/volar.cjs"
]
}
}