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
windows rename already included
No response
file src/vector.js
src/vector.js
export default class Vector {}
file test/vector.test.js
test/vector.test.js
import Vector from '../src/vector.js' new Vector();
now rename the file
mv src/vector.js src/Vector.js
and update the file test/vector.test.js
import '../src/Vector.js' new Vector();
There is an error message:
No error message, as the imported file name matches the actual file name.
tsconfig.json
{ "compilerOptions": { "target": "ES2017", "module": "commonjs", "lib": ["es2017", "dom", "DOM.Iterable"], "allowJs": true, "checkJs": true, "skipLibCheck": true, "declaration": true, "noEmit": true, "strict": true, "baseUrl": ".", "typeRoots": [ "./node_modules/@types", ], "esModuleInterop": true }, "include": [ "src/**/*.js", "test/**/*.js", ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🔎 Search Terms
windows rename already included
🕗 Version & Regression Information
⏯ Playground Link
No response
💻 Code
file
src/vector.js
file
test/vector.test.js
now rename the file
and update the file
test/vector.test.js
🙁 Actual behavior
There is an error message:
🙂 Expected behavior
No error message, as the imported file name matches the actual file name.
Additional information about the issue
tsconfig.json
The text was updated successfully, but these errors were encountered: