-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
67 lines (66 loc) · 3.04 KB
/
tsconfig.build.json
File metadata and controls
67 lines (66 loc) · 3.04 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"importHelpers": true,
"moduleResolution": "bundler",
"strict": true,
"noUncheckedSideEffectImports": false,
"useUnknownInCatchVariables": false,
"strictPropertyInitialization": false,
"types": ["node"],
"module": "ES2020",
"target": "es2021", // esnext has an issue with class generation and our decoders. TODO - avoid using decorators until in standard
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"removeComments": false,
"preserveConstEnums": true,
"jsx": "react-jsx",
"lib": [
"es5",
"dom",
"es2015.promise",
"es2015.collection",
"es2015.iterable",
"es2015.symbol.wellknown",
"es2020.bigint",
"es2017",
"es2022.error",
"es2022.array",
"es2021.string",
"es2022.string"
],
"paths": {
"core/*": ["./packages/dev/core/dist/*"],
"gui/*": ["./packages/dev/gui/dist/*"],
"materials/*": ["./packages/dev/materials/dist/*"],
"addons/*": ["./packages/dev/addons/dist/*"],
"post-processes/*": ["./packages/dev/postProcesses/dist/*"],
"procedural-textures/*": ["./packages/dev/proceduralTextures/dist/*"],
"loaders/*": ["./packages/dev/loaders/dist/*"],
"serializers/*": ["./packages/dev/serializers/dist/*"],
"inspector-legacy/*": ["./packages/dev/inspector/dist/*"],
"inspector/*": ["./packages/dev/inspector-v2/dist/*"],
"shared-ui-components/*": ["./packages/dev/sharedUiComponents/dist/*"],
"node-editor/*": ["./packages/tools/nodeEditor/dist/*"],
"node-geometry-editor/*": ["./packages/tools/nodeGeometryEditor/dist/*"],
"node-render-graph-editor/*": ["./packages/tools/nodeRenderGraphEditor/dist/*"],
"node-particle-editor/*": ["./packages/tools/nodeParticleEditor/dist/*"],
"gui-editor/*": ["./packages/tools/guiEditor/dist/*"],
"accessibility/*": ["./packages/tools/accessibility/dist/*"],
"viewer/*": ["./packages/tools/viewer/dist/*"],
"ktx2decoder/*": ["./packages/tools/ktx2Decoder/dist/*"],
"vsm": ["./packages/tools/vsm/dist/*"],
"smart-filters": ["./packages/dev/smartFilters/dist"],
"smart-filters/*": ["./packages/dev/smartFilters/dist/*"],
"smart-filters-blocks": ["./packages/dev/smartFilterBlocks/dist"],
"smart-filters-blocks/*": ["./packages/dev/smartFilterBlocks/dist/*"],
"smart-filters-editor-control": ["./packages/tools/smartFiltersEditorControl/dist"]
}
},
"exclude": ["**/node_modules", "**/dist"]
}