123456789101112131415161718192021 |
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI (C) Copyright IBM Corp. 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- const merge = require('webpack-merge');
- const common = require('./webpack.common.js');
- module.exports = merge(common, {
- mode: 'production',
- module: {
- rules: [
- {
- test: /(\.tsx|\.ts)$/,
- loader: 'ts-loader',
- exclude: [ /node_modules/ ]
- }
- ]
- }
- });
|