mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 03:08:59 +08:00
13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
"use strict";
|
|
|
|
const commonBabelConfig = require("../discourse/lib/common-babel-config");
|
|
|
|
module.exports = {
|
|
name: require("./package").name,
|
|
options: {
|
|
...commonBabelConfig(),
|
|
},
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
};
|