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", "name": "flowos",
"version": "1.1.0", "version": "1.1.0",
"description": "The most aesthetic webOS.", "description": "The most aesthetic webOS.",
"main": "src/kernel.ts", "main": "src/bootloader.ts",
"scripts": { "scripts": {
"docs": "typedoc src/**", "docs": "typedoc src/**",
"test": "ts-standard", "test": "ts-standard",

View file

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

View file

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