老师,我的tsconfig.json配置如下:
{
"compilerOptions": {
"target": "ES2015",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}
在 index.ts 中能正常使用DOM语法和Set
const myset = new Set();
document.querySelector(".sd");
export {};
不像视频里面的会出现提示Set/document找不到的问题,想问下为什么?