17 lines
387 B
JavaScript
17 lines
387 B
JavaScript
/**
|
|
* Configuration object for the AsaJS build process.
|
|
* @type {import('asajs/config.d.ts').Config}
|
|
*/
|
|
export const config = {
|
|
packinfo: {
|
|
name: "AsaJS - Installer Test",
|
|
description: "Create your Minecraft JSON-UI resource packs using JavaScript.",
|
|
version: [4, 0, 1],
|
|
},
|
|
compiler: {
|
|
enabled: true,
|
|
autoImport: true,
|
|
autoEnable: true,
|
|
importToPreview: false,
|
|
},
|
|
}
|