mirror of https://github.com/sveltejs/svelte
parent
38e47d0cae
commit
ce732a6638
@ -0,0 +1,14 @@
|
||||
[
|
||||
{
|
||||
"code": "module_illegal_default_export",
|
||||
"message": "A component cannot have a default export",
|
||||
"start": {
|
||||
"line": 3,
|
||||
"column": 1
|
||||
},
|
||||
"end": {
|
||||
"line": 3,
|
||||
"column": 33
|
||||
}
|
||||
}
|
||||
]
|
@ -0,0 +1,4 @@
|
||||
<script module>
|
||||
let answer = 42;
|
||||
export { answer as default};
|
||||
</script>
|
Loading…
Reference in new issue