We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
index.ts is not part of the compilation output
I'm getting the following error on build with angular 5:
node_modules/ng-select2/index.ts is not part of the compilation output. Please check the other error messages for details.
The text was updated successfully, but these errors were encountered:
See: #angular/angular#20091
You can fix this by adding this code in your tsconfig.json file:
"include": [ "src/**/*.ts", "node_modules/ng-select2/index.ts" ]
complete file:
{ "compileOnSave": false, "compilerOptions": { "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, "target": "es5", "typeRoots": [ "node_modules/@types" ], "lib": [ "es2017", "dom" ] }, "include": [ "src/**/*.ts", "node_modules/ng-select2/index.ts" ] }
Sorry, something went wrong.
#18 can permanently fix these and give aot support
No branches or pull requests
I'm getting the following error on build with angular 5:
node_modules/ng-select2/index.ts is not part of the compilation output. Please check the other error messages for details.
The text was updated successfully, but these errors were encountered: