😍Cấu hình import các module không cần dấu . (ok)
Example 1
{
"compilerOptions": {
"target": "es2016",
"module": "ES6",
"baseUrl": "./",
"allowJs": true,
"declaration": true,
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}import { Test } from "src/models/test"; // or import { Test } from "./src/models/test";
new Test();
new Test();
Example 2

PreviousCấu hình này rất quan trọng "lib" nó giúp chạy js trực tiếp trong trình duyệt (ok) 😍NextDefinitelyTyped (@types)
Last updated