We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tsconfig.json
npm install
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
tns-tsconfig-migration/tsconfig.json
compilerOptions.paths.*
./app/tns_modules/*
./node_modules/tns-core-modules/*
./node_modules/*
tsconfig.json is not modified.
compilerOptions.paths.* gets overwritten with the default value of two items:
This discards any customizations made for an app and breaks automated builds.
The text was updated successfully, but these errors were encountered:
fix(postinstall): upgrader respects existing tsconfig paths
4871f25
fixes #32
fix(postinstall): upgrader respects existing tsconfig paths (#33)
b6fbcaa
Successfully merging a pull request may close this issue.
Steps to reproduce
tns-tsconfig-migration/tsconfig.json
contains three items incompilerOptions.paths.*
:./app/tns_modules/*
./node_modules/tns-core-modules/*
./node_modules/*
npm install
Expected result
tsconfig.json
is not modified.Actual result
compilerOptions.paths.*
gets overwritten with the default value of two items:./node_modules/tns-core-modules/*
./node_modules/*
Impact
This discards any customizations made for an app and breaks automated builds.
The text was updated successfully, but these errors were encountered: