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
65
66
67
68
69
70
71
72
73
74
75
76
77
| {
| "compileOnSave": false,
| "compilerOptions": {
| "rootDir": ".",
| "sourceMap": true,
| "declaration": false,
| "moduleResolution": "node",
| "emitDecoratorMetadata": true,
| "allowSyntheticDefaultImports": true,
| "experimentalDecorators": true,
| "resolveJsonModule": true,
| "importHelpers": true,
| "jsx": "react",
| "target": "esnext",
| "module": "esnext",
| "lib": [
| "es2020",
| "dom",
| "dom.iterable",
| "esnext.array"
| ],
| "skipLibCheck": true,
| "skipDefaultLibCheck": true,
| "baseUrl": ".",
| "paths": {
| "@humansignal/app-common": [
| "libs/app-common/src/index.ts"
| ],
| "@humansignal/app-common/*": [
| "libs/app-common/src/*"
| ],
| "@humansignal/core": [
| "libs/core/src/index.ts"
| ],
| "@humansignal/core/*": [
| "libs/core/src/*"
| ],
| "@humansignal/datamanager": [
| "libs/datamanager/src/index.js"
| ],
| "@humansignal/editor": [
| "libs/editor/src/index.js"
| ],
| "@humansignal/frontend-test/*": [
| "libs/frontend-test/src/*"
| ],
| "@humansignal/icons": [
| "libs/ui/src/assets/icons"
| ],
| "@humansignal/shad/*": [
| "./libs/ui/src/shad/*"
| ],
| "@humansignal/ui": [
| "libs/ui/src/index.ts"
| ],
| "@humansignal/ui/*": [
| "libs/ui/src/*"
| ]
| },
| "types": [
| "vite-plugin-svgr/client"
| ],
| "plugins": [
| {
| "name": "typescript-plugin-css-modules",
| "options": {
| "customMatcher": "\\.module\\.scss$",
| "classnameTransform": "asIs"
| }
| }
| ]
| },
| "exclude": [
| "node_modules",
| "tmp"
| ]
| }
|
|