You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
940 B
46 lines
940 B
3 years ago
|
module.exports = {
|
||
|
paths: {
|
||
|
"@stylesheets": "css",
|
||
|
"@scripts": "js",
|
||
|
"@pages": "html",
|
||
|
"@icons": "icons",
|
||
|
"@libraries": "lib"
|
||
|
},
|
||
|
interpreter: [
|
||
|
{
|
||
|
input: '.',
|
||
|
output: '.',
|
||
|
type: 'js',
|
||
|
},
|
||
|
{
|
||
|
input: 'pages/scripts',
|
||
|
output: 'js',
|
||
|
type: 'js',
|
||
|
},
|
||
|
{
|
||
|
input: 'pages',
|
||
|
output: 'html',
|
||
|
type: 'html',
|
||
|
},
|
||
|
{
|
||
|
input: 'stylesheets',
|
||
|
output: 'css',
|
||
|
type: 'sass',
|
||
|
},
|
||
|
{
|
||
|
input: 'icons',
|
||
|
output: 'icons',
|
||
|
type: 'other',
|
||
|
},
|
||
|
{
|
||
|
input: 'lib',
|
||
|
output: 'lib',
|
||
|
type: 'other',
|
||
|
},
|
||
|
{
|
||
|
input: 'manifest.json',
|
||
|
output: 'manifest.json',
|
||
|
type: 'file',
|
||
|
}
|
||
|
]
|
||
|
}
|