Для приведенного ниже кода:
const MY_KEY: symbol = Symbol();
let obj: object = {};
obj[MY_KEY] = 123;
console.log(obj[MY_KEY]); // 123
Для приведенной ниже конфигурации tscconfig.json
:
{
"compilerOptions": {
"lib": ["es2015"]
},
}
Файлы
$ ls
tsconfig.json tstut.html tstut.js tstut.ts
Как устранить ошибку ниже?
$ tsc --version
Version 2.8.3
$ tsc tstut.ts
tstut.ts(1,24): error TS2304: Cannot find name 'Symbol'.