kernel/.presetterrc.json

41 lines
910 B
JSON
Raw Normal View History

2023-06-23 09:04:11 +00:00
{
"preset": [
"presetter-preset-rollup",
"presetter-preset-esm"
],
"config": {
"tsconfig": {
"compilerOptions": {
"lib": [
"ES2021",
"dom"
]
}
},
"prettier": {
"singleQuote": false
2023-06-23 09:50:10 +00:00
},
"rollup": {
"output": [
{
"file": "dist/index.js",
"format": "cjs",
"sourcemap": true,
"inlineDynamicImports": true
}
],
"plugins": [
[
"@apply @rollup/plugin-node-resolve[default]",
{
"browser": true
}
]
]
2023-06-23 09:04:11 +00:00
}
2023-06-23 09:16:44 +00:00
},
"variable": {
"source": "src"
2023-06-23 09:04:11 +00:00
}
}