-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
53 lines (53 loc) · 1.54 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
{
"compilerOptions": {
"noEmit": true,
"module": "commonjs",
"target": "es2018",
"lib": ["es2018"],
"allowJs": true,
"checkJs": true,
"strict": true,
"resolveJsonModule": true,
"noImplicitAny": true
},
"include": ["plugins/**/*"],
"exclude": [
"plugins/_path.js",
"plugins/_transforms.js",
"plugins/_applyTransforms.js",
"plugins/cleanupEnableBackground.js",
"plugins/cleanupIDs.js",
"plugins/cleanupListOfValues.js",
"plugins/cleanupNumericValues.js",
"plugins/collapseGroups.js",
"plugins/convertColors.js",
"plugins/convertPathData.js",
"plugins/convertShapeToPath.js",
"plugins/convertStyleToAttrs.js",
"plugins/convertTransform.js",
"plugins/mergePaths.js",
"plugins/mergeStyles.js",
"plugins/moveElemsAttrsToGroup.js",
"plugins/moveGroupAttrsToElems.js",
"plugins/plugins.js",
"plugins/prefixIds.js",
"plugins/removeDimensions.js",
"plugins/removeEditorsNSData.js",
"plugins/removeEmptyAttrs.js",
"plugins/removeNonInheritableGroupAttrs.js",
"plugins/removeOffCanvasPaths.js",
"plugins/removeUnknownsAndDefaults.js",
"plugins/removeUnusedNS.js",
"plugins/removeUselessDefs.js",
"plugins/removeUselessStrokeAndFill.js",
"plugins/removeViewBox.js",
"plugins/removeXMLNS.js",
"plugins/reusePaths.js",
"plugins/sortDefsChildren.js",
"plugins/sortAttrs.js",
"plugins/removeEmptyContainers.js",
"plugins/minifyStyles.js",
"plugins/inlineStyles.js",
"plugins/preset-default.js"
]
}