-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
62 lines (61 loc) · 1.67 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
{
"compilerOptions": {
"incremental": false,
"target": "ES2020",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "bundler",
"paths": {
"~/*": ["src/*"],
"@assets/*": ["assets/*"],
"@test/*": ["test/*"],
"@core-component": ["@storipress/core-component"],
"@editor-core/*": ["editor-core/*"],
"@editor-core": ["editor-core/index.ts"],
"@article-templates/*": ["article-templates/*"],
"@builder-component": ["node_modules/@storipress/builder-component/dist/src/entry.d.ts"],
"@block/*": ["block/*"],
"@storipress/block/*": ["block/elements/*"],
"@storipress/block": ["block/elements/index.ts"],
"@storipress/custom-field": ["vendor/custom-field"]
},
"resolveJsonModule": true,
"types": [
"vite/client",
"vitest/importMeta",
"vitest/globals",
"node",
"vite-plugin-pages/client",
"vite-plugin-vue-layouts/client",
"@testing-library/jest-dom"
],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": [
".storybook/**/*",
"assets/**/*",
"src/**/*",
"test/**/*",
"article-templates/templates/index.ts",
"article-templates/templates/fallback.ts",
"components.d.ts"
],
"exclude": [
"**/*.stories.ts",
"**/*.stories.js",
"**/dist/**",
"**/node_modules/**",
"editor-core/core/tiptap/render-cursor.jsx",
"**/*.snap"
]
}