build: fixed build failing
This commit is contained in:
parent
04ccdf1442
commit
99f2577ee0
3 changed files with 6 additions and 3 deletions
|
|
@ -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",
|
||||||
|
|
|
||||||
|
|
@ -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'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,5 +29,8 @@ export default defineConfig({
|
||||||
disable: false,
|
disable: false,
|
||||||
verbose: true
|
verbose: true
|
||||||
})
|
})
|
||||||
]
|
],
|
||||||
|
build: {
|
||||||
|
target: 'ESNEXT'
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue