UNPKG

ng2-tree-pms

Version:

angular2 component for visualizing data that can be naturally represented as a tree

31 lines (28 loc) 616 B
'use strict'; const path = require('path'); const SRC = path.resolve('src'); module.exports = { // devtool: 'inline-source-map', module: { postLoaders: [ { test: /\.(ts)$/, loader: 'istanbul-instrumenter-loader', include: SRC, exclude: [ /\.(e2e|spec)\.ts$/, /node_modules/ ] } ], loaders: [ { loader: 'raw', test: /\.(css|html)$/ }, { exclude: /node_modules/, loader: 'ts', test: /\.ts$/ } ] }, resolve: { extensions: ['', '.js', '.ts'], modulesDirectories: ['node_modules'], root: SRC } };