forked from svg/svgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
81 lines (81 loc) · 2.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"compilerOptions": {
"noEmit": true,
"module": "commonjs",
"target": "es2018",
"lib": ["es2018"],
"allowJs": true,
"checkJs": true,
"strict": true,
"resolveJsonModule": true,
"noImplicitAny": false
},
"include": ["lib/**/*", "plugins/**/*", "test/**/*"],
"exclude": [
"lib/svgo-node.js",
"lib/style.test.js",
"lib/svgo/coa.js",
"lib/svgo/config.js",
"lib/svgo/js2svg.js",
"lib/svgo/svg2js.js",
"lib/svgo/jsAPI.js",
"lib/svgo.js",
"plugins/_path.js",
"plugins/_transforms.js",
"plugins/_applyTransforms.js",
"plugins/cleanupAttrs.js",
"plugins/cleanupEnableBackground.js",
"plugins/cleanupIDs.js",
"plugins/cleanupListOfValues.js",
"plugins/cleanupNumericValues.js",
"plugins/collapseGroups.js",
"plugins/convertColors.js",
"plugins/convertEllipseToCircle.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/removeAttributesBySelector.js",
"plugins/removeAttrs.js",
"plugins/removeComments.js",
"plugins/removeDimensions.js",
"plugins/removeDoctype.js",
"plugins/removeEditorsNSData.js",
"plugins/removeElementsByAttr.js",
"plugins/removeEmptyAttrs.js",
"plugins/removeEmptyText.js",
"plugins/removeHiddenElems.js",
"plugins/removeNonInheritableGroupAttrs.js",
"plugins/removeOffCanvasPaths.js",
"plugins/removeRasterImages.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",
"lib/svgo/jsAPI.js",
"test/browser.js",
"test/coa/_index.js",
"test/config/_index.js",
"test/config/fixtures/invalid-array.js",
"test/config/fixtures/invalid-null.js",
"test/config/fixtures/invalid-string.js",
"test/config/fixtures/invalid/svgo.config.js",
"test/config/fixtures/module-not-found.js",
"test/config/fixtures/one/two/config.js",
"test/jsapi/_index.js",
"test/plugins/_index.js",
"test/regression.js",
"test/svg2js/_index.js",
"test/svgo/_index.js"
]
}