我正在尝试使用Visual Studio Code 1.0,但是新的Intellisense称为“Salsa”并不适用于我。我有休闲项目:
App
├── index.html
├── jsconfig.json
├── main.js
├── lib
│ └── require.js
└── js
└── pet.js
jsconfig:
{
"compilerOptions": {
"target": "es6"
}
}
pet.js:
define(function () {
var Pet = function(name) {
this.name = name;
this.getNameUpperCase = function(){
return this.name.toUpperCase();
}
}
return Pet;
});
main.js(不建议我使用方法getNameUpperCase)
拜托,我做错了什么?
[edit]导入pet.js是错误的。