我想访问tns-core-modules的ui元素。由于我一直在苦苦挣扎,我做了一些研究并发现,我可能需要在tsconfig.json中添加以下行:
"paths": {
"*": [
"./node_modules/tns-core-modules/*",
"./node_modules/*"]
}
现在我不断收到以下错误:
错误TS5023:未知的编译器选项'路径'。
我的tsconfig文件:
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"inlineSourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmitHelpers": true,
"noEmitOnError": true,
"paths": {
"*": [
"./node_modules/tns-core-modules/*",
"./node_modules/*"]
}
},
"exclude": [
"node_modules",
"platforms"
]
}
我的package.json:
//some stuff
"nativescript-telerik-ui": "1.3.1",
"tns-core-modules": "2.2.1",
},
"devDependencies": {
//some stuff
"nativescript-dev-typescript": "0.3.2",
"typescript": "1.8.10"
}
有人知道可能出现的问题吗?