1
0
mirror of https://github.com/svg/svgo.git synced 2025-04-19 10:22:15 +03:00
svgo/tsconfig.json
2024-06-07 18:21:00 +01:00

24 lines
497 B
JSON

{
"compilerOptions": {
"noEmit": true,
"module": "node16",
"target": "es2020",
"lib": ["es2020"],
"allowJs": true,
"checkJs": true,
"strict": true,
"resolveJsonModule": true
},
"include": ["lib/**/*.js", "plugins/**/*", "test/cli/**/*"],
"exclude": [
"lib/svgo-node.js",
"lib/svgo-node.test.js",
"lib/svgo.js",
"lib/builtin.js",
"lib/svgo.test.js",
"lib/svgo/**/*.js",
"plugins/plugins.js",
"plugins/preset-default.js"
]
}