-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
58 lines (58 loc) · 1.42 KB
/
tsconfig.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"compilerOptions": {
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2020",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"verbatimModuleSyntax": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"module": "NodeNext",
"lib": [
"es2020",
"dom",
"dom.iterable"
],
"paths": {
"@camunda-modeler-code-editor/accessors": [
"./packages/accessors/lib/index.js"
],
"@camunda-modeler-code-editor/scope-providers": [
"./packages/scope-providers/lib/index.js"
],
"@camunda-modeler-code-editor/editable-types": [
"./packages/editable-types/lib/index.js"
],
"@camunda-modeler-code-editor/plugin-base": [
"./packages/plugin-base/lib/index.js"
],
"@camunda-modeler-code-editor/editors": [
"./packages/editors/lib/index.js"
],
"@camunda-modeler-code-editor/config": [
"./packages/config/lib/index.js"
],
"@camunda-modeler-code-editor/api": [
"./packages/api/lib/index.js"
]
}
},
"include": [
"packages/**/*.js",
"packages/**/*.jsx",
"packages/**/*.ts",
"packages/**/*.tsx",
"examples/**/*.js",
"examples/**/*.jsx",
"examples/**/*.ts",
"examples/**/*.tsx"
],
"exclude": [
"**/dist",
"**/node_modules"
]
}