mirror of
https://github.com/msikma/pokesprite.git
synced 2026-03-21 17:54:23 -05:00
15 lines
435 B
JavaScript
15 lines
435 B
JavaScript
// pokesprite-images <https://github.com/msikma/pokesprite>
|
|
// © MIT license
|
|
|
|
// This file mostly exists so that the module's path can be determined
|
|
// by using require.resolve(), which fails for modules without entry point.
|
|
|
|
const path = require('path')
|
|
|
|
module.exports = {
|
|
baseDir: path.resolve(`${__dirname}`),
|
|
inventoryDirs: ['items', 'items-outline'],
|
|
pokemonDirs: ['pokemon-gen7x', 'pokemon-gen8'],
|
|
miscDirs: ['misc']
|
|
}
|