角度的 Tsconfig
Posted
技术标签:
【中文标题】角度的 Tsconfig【英文标题】:Tsconfig in angular 【发布时间】:2017-08-07 10:11:32 【问题描述】:我在tsconfig.ts
中有这个错误:文件:
'No inputs were found in config file 'c:/Projects/Angular2//src/tsconfig.json'.
Specified 'include' paths were '["src/**/*.ts"]' and 'exclude' paths were '["node_modules"]'.'
这是我的 tsconfig.ts:
"compilerOptions":
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2015", "dom"],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"types" : ["node", "jasmine"],
"typeRoots": [
"../node_modules/@types"
]
,
"include": [ "src/**/*.ts" ],
"exclude": [ "node_modules" ]
Angular 2 v.3 - rc.3,TS。如何实施?在 v.2.0.0 中一切正常..
【问题讨论】:
请参考this。我想你至少有一个 ts 文件要编译。 @Ali Shahzad 感谢您的快速回答。现在我有这个错误:file: ''Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.'
【参考方案1】:
在soultion中添加tsconfig.js文件后我也有同样的问题
然后我添加了 Test.ts 文件并在 tsconfig 文件中添加了下面提到的代码行
"include": ["**/*"]
,"exclude": ["node_modules","wwwroot" ]
那么它对我有用,根本没有错误
我从这个link得到答案
【讨论】:
以上是关于角度的 Tsconfig的主要内容,如果未能解决你的问题,请参考以下文章