REFACTORING GOAL:
Address the fact that it is deprecated to put this text into javascript/.env in order to allow import via absolute path
Deleting that file without replacing it with another approach will result in an error where the application fails to load with an error in javascript/src/index.js on the line that tries to do import App from "main/App";
So, instead, per Justin Vo's suggestion, replace with adding options into jsconfig.json as follows:
{
"compilerOptions": {
"baseUrl": "src"
},
"include": [
"src"
]
}
Acceptance Criteria
REFACTORING GOAL:
Address the fact that it is deprecated to put this text into
javascript/.envin order to allow import via absolute pathDeleting that file without replacing it with another approach will result in an error where the application fails to load with an error in
javascript/src/index.json the line that tries to doimport App from "main/App";So, instead, per Justin Vo's suggestion, replace with adding options into
jsconfig.jsonas follows:{ "compilerOptions": { "baseUrl": "src" }, "include": [ "src" ] }Acceptance Criteria
javascript/.envno longer in in the repo (if the only line in it wasNODE_ENV=src). If something else is found, remove just that one line and leave the rest.