[ ] You verified that this is a real problem by searching the [NativeScript Forum] and the other [issues] in this repo.
[x] You checked our [demo apps] and the [documentation] for sample usage.
Tell us about the problem
after I upgraded my webpack to v0.15, I get the strange error. I didnt get this error before v0.15.
Module build failed: Error: ${PATH}/nativescript-ios-uuid/index.ts is missing from the TypeScript compilation. Please make sure it is in your tsconfig via the 'files' or 'include' property.
Local environment
[x] Mac
[x] Node version: v8.11.2 <!-- run node --version -->
[x] NativeScript CLI version: v4.2.2 <!-- run tns --version -->
Issue Checklist
Tell us about the problem
after I upgraded my webpack to v0.15, I get the strange error. I didnt get this error before v0.15.
Module build failed: Error: ${PATH}/nativescript-ios-uuid/index.ts is missing from the TypeScript compilation. Please make sure it is in your tsconfig via the 'files' or 'include' property.
Local environment
node --version
-->tns --version
-->Project data
const webpack = require("webpack"); const nsWebpack = require("nativescript-dev-webpack"); const nativescriptTarget = require("nativescript-dev-webpack/nativescript-target"); const CleanWebpackPlugin = require("clean-webpack-plugin"); const CopyWebpackPlugin = require("copy-webpack-plugin"); const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer"); const { NativeScriptWorkerPlugin } = require("nativescript-worker-loader/NativeScriptWorkerPlugin"); const UglifyJsPlugin = require("uglifyjs-webpack-plugin"); const { AngularCompilerPlugin } = require("@ngtools/webpack");
module.exports = env => { // Add your custom Activities, Services and other Android app components here. const appComponents = [ "tns-core-modules/ui/frame", "tns-core-modules/ui/frame/activity", ];
};