В моем проекте angular2 я пытаюсь расширить прототип строкового класса с помощью typescript. Это мой код:
interface String
{
startsWith(s:string);
contains(s:string);
containsOr(s1:string, s2:string);
}
String.prototype.startsWith = function (s:string):boolean {
return this.indexOf (s) === 0;
}
String.prototype.contains = function (s:string):boolean {
return this.indexOf(s) > 1;
}
String.prototype.containsOr = function (s1:string, s2:string):boolean {
return this.indexOf(s1) > 1 || this.indexOf (s2) > 1;
}
С помощью этого кода проект компилируется (также помогает помощь в Visual Studio Code), но во время выполнения я получаю "contains not defined".
Что я делаю неправильно?
Спасибо большое
PS: это мой tsconfig:
{
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "wwwroot/app/source/"
},
"exclude": [
"node_modules",
"bower_components",
"wwwroot",
"typings/main",
"typings/main.d.ts"
]
}
ИЗМЕНИТЬ
Я заметил, что импорт js файла в index.html работает, но мне не нравится этот подход.
<script src="app/source/utils/extensions.js"></script>