build: fixed build failing

This commit is contained in:
ThinLiquid 2024-01-22 13:25:12 +00:00
parent 04ccdf1442
commit 99f2577ee0
No known key found for this signature in database
GPG key ID: 17538DC3DF6A7387
3 changed files with 6 additions and 3 deletions

View file

@ -2,7 +2,7 @@
"name": "flowos",
"version": "1.1.0",
"description": "The most aesthetic webOS.",
"main": "src/kernel.ts",
"main": "src/bootloader.ts",
"scripts": {
"docs": "typedoc src/**",
"test": "ts-standard",

View file

@ -3,6 +3,6 @@ module.exports = {
name: 'FlowOS',
plugin: ['typedoc-material-theme'],
themeColor: '#1e1e2e',
entryPoints: ['src/kernel.ts'],
entryPoints: ['src/bootloader.ts'],
entryPointStrategy: 'expand'
}

View file

@ -29,5 +29,8 @@ export default defineConfig({
disable: false,
verbose: true
})
]
],
build: {
target: 'ESNEXT'
}
})