forked from magento/magento2-page-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (38 loc) · 864 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
{
"extends": "./tsconfig.ce.json",
"compilerOptions": {
"baseUrl": ".",
"strictNullChecks": false,
"module": "esnext",
"target": "es2015",
"allowJs": true,
"noImplicitAny": true,
"pretty": true,
"allowSyntheticDefaultImports": true,
"lib": [
"es2015",
"es2015.iterable",
"es2015.promise",
"dom",
"es7"
],
"types": [
"jquery",
"jqueryui",
"knockout",
"magento2",
"object-path",
"requirejs",
"slick-carousel",
"tinycolor",
"tinymce",
"underscore"
]
},
"exclude": [
"page-builder-types",
"node_modules",
"**/*.spec.ts",
"**/*.types.ts"
]
}