NullVoxPopuli / ember-addon-migrator

ember addon v1 to v2 migrator
19 stars 4 forks source link

extract-tests, tsconfig.compiler-options, extends #65

Closed nicolechung closed 1 year ago

nicolechung commented 1 year ago

Because the migrator moves the source code from /addon to /package/addon, a change to extends in the package/tsconfig.compiler-options.json is needed:

{
+  extends: "tsconfig.compiler-options.my-custom-options.json"
-  extends: "../tsconfig.compiler-options.my-custom-options.json"
}

Not sure if this is something that can be automated, or should just be documented?

NullVoxPopuli commented 1 year ago

I think it can be automated, and would be worth doing!