UNPKG
crude-docs
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.3
0.1.2
0.1.1
A sample docs generator and easy to use!!
github.com/flowke/crude-docs
flowke/crude-docs
crude-docs
/
webpackConf
/
base.js
24 lines
(18 loc)
•
313 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const
path =
require
(
'path'
);
module
.
exports
= {
context
: path.
resolve
(__dirname,
'..'
),
module
: {
rules
: [ {
test
:
/\.js$/
,
use
:
'babel-loader'
,
exclude
: [
// /node_modules/
],
include
: [
/crude-docs/
] }, ] } };