-
Notifications
You must be signed in to change notification settings - Fork 816
/
tsconfig.json
41 lines (41 loc) · 941 Bytes
/
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
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"lib": [
"DOM",
"ES5",
"ES6",
"ES2015.Promise"
],
"sourceMap": true,
"noImplicitAny": true,
"importHelpers": false,
"experimentalDecorators": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"jsx": "react",
"baseUrl": ".",
"paths": {
"survey-core": [
"./src/entries/core.ts"
],
"@coreIconsV1": [
"packages/survey-core/src/iconsV1"
],
"@coreIconsV2": [
"packages/survey-core/src/iconsV2"
]
}
},
"exclude": [
"src/entries/**/*.ts"
],
"include": [
"src/**/*.ts",
"packages/survey-core/src/drag-drop-panel-helper-v1.ts",
"packages/survey-core/src/drag-drop-page-helper-v1.ts",
"packages/survey-core/src/drag-drop-helper-v1.ts",
"packages/survey-core/entries/chunks/core-wo-model.ts"
]
}