-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
55 lines (55 loc) · 1.78 KB
/
tsconfig.json
File metadata and controls
55 lines (55 loc) · 1.78 KB
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
{
"extends": "./tsconfig.aliases.json",
"compilerOptions": {
"incremental": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"types": ["vitest/globals", "jquery"],
"esModuleInterop": true,
"moduleResolution": "bundler"
},
"files": [
"library/src/scripts/htmlWidget/HtmlWidgetEditor.d.ts",
"node_modules/vite/client.d.ts",
"library/src/scripts/@types/global.d.ts",
"library/src/scripts/@types/react-spring.d.ts"
],
"include": [
"build/**/*.ts",
"build/**/*.tsx",
"build/**/*.mts",
"build/**/*.cjs",
"library/src/scripts/**/*.ts",
"library/src/scripts/**/*.tsx",
"applications/*/src/scripts/**/*.ts",
"applications/*/src/scripts/**/*.tsx",
"cloud/plugins/*/src/scripts/**/*.ts",
"cloud/plugins/*/src/scripts/**/*.tsx",
"cloud/applications/*/src/scripts/**/*.ts",
"cloud/applications/*/src/scripts/**/*.tsx",
"cloud/applications/groups/src/scripts/**/*.tsx",
"packages/**/*.ts",
"packages/**/*.tsx",
"plugins/*/src/scripts/**/*.ts",
"plugins/*/src/scripts/**/*.tsx",
"themes/*/src/scripts/**/*.ts",
"themes/*/src/scripts/**/*.tsx",
"addons/themes/*/src/scripts/**/*.ts",
"addons/themes/*/src/scripts/**/*.tsx",
".storybookAppPages/*.ts*",
"vitest.config.mts"
],
"exclude": [
"**/*.js",
"**/*.jsx",
"node_modules/**/*",
"node_modules",
"node_modules",
"./node_modules",
"./node_modules/*",
"./node_modules/@types/node/index.d.ts",
"packages/**/dist/**/*.ts",
"packages/**/dist/**/*.tsx",
"packages/vanilla-ui-library-example"
]
}