-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
tsconfig.json
67 lines (67 loc) · 2.78 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
65
66
67
{
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"strictNullChecks": true,
"module": "commonjs",
"strictPropertyInitialization": false,
"removeComments": true,
"noUnusedLocals": true,
"target": "ES5",
"lib": ["dom", "es2019"],
"sourceMap": true,
"esModuleInterop": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"paths": {
"luna-menu": ["src/menu/index"],
"luna-carousel": ["src/carousel/index"],
"luna-chart": ["src/chart/index"],
"luna-color-picker": ["src/color-picker/index"],
"luna-command-palette": ["src/command-palette/index"],
"luna-console": ["src/console/index"],
"luna-cropper": ["src/cropper/index"],
"luna-danmaku": ["src/danmaku/index"],
"luna-data-grid": ["src/data-grid/index"],
"luna-dom-highlighter": ["src/dom-highlighter/index"],
"luna-dom-viewer": ["src/dom-viewer/index"],
"luna-editor": ["src/editor/index"],
"luna-gallery": ["src/gallery/index"],
"luna-json-editor": ["src/json-editor/index"],
"luna-menu-bar": ["src/menu-bar/index"],
"luna-modal": ["src/modal/index"],
"luna-music-player": ["src/music-player/index"],
"luna-notification": ["src/notification/index"],
"luna-object-viewer": ["src/object-viewer/index"],
"luna-performance-monitor": ["src/performance-monitor/index"],
"luna-shader-toy-player": ["src/shader-toy-player/index"],
"luna-video-player": ["src/video-player/index"],
"luna-window": ["src/window/index"],
"luna-markdown-viewer": ["src/markdown-viewer/index"],
"luna-syntax-highlighter": ["src/syntax-highlighter/index"],
"luna-scrollbar": ["src/scrollbar/index"],
"luna-music-visualizer": ["src/music-visualizer/index"],
"luna-fc-emulator": ["src/fc-emulator/index"],
"luna-retro-emulator": ["src/retro-emulator/index"],
"luna-retro-handheld": ["src/retro-handheld/index"],
"luna-keyboard": ["src/keyboard/index"],
"luna-markdown-editor": ["src/markdown-editor/index"],
"luna-tab": ["src/tab/index"],
"luna-text-viewer": ["src/text-viewer/index"],
"luna-log": ["src/log/index"],
"luna-setting": ["src/setting/index"],
"luna-box-model": ["src/box-model/index"],
"luna-tag-input": ["src/tag-input/index"],
"luna-qrcode-generator": ["src/qrcode-generator/index"],
"luna-toolbar": ["src/toolbar/index"],
"luna-image-viewer": ["src/image-viewer/index"],
"luna-painter": ["src/painter/index"],
"luna-mask-editor": ["src/mask-editor/index"],
"luna-image-list": ["src/image-list/index"],
"luna-lrc-player": ["src/lrc-player/index"],
"luna-logcat": ["src/logcat/index"],
"luna-file-list": ["src/file-list/index"]
}
}
}