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