我一直在阅读本教程
http://yizeng.me/2017/05/20/add-typescript-support-to-ruby-on-rails-a-quick-and-hacky-example/
一切都很好。
现在tsconfig看起来像这样
ParamInterface
但正如我在 {
"compilerOptions": {
"outFile": "app/assets/javascripts/generated/welcome.js",
"noImplicitAny": true,
"noEmitOnError": true,
"sourceMap": true,
"target": "es5"
},
"files": [
"app/assets/javascripts/welcome.ts"
]
}
文件中看到的那样,我有tsconfig
和outfile
。如何在文件中设置files
扩展名的所有文件。我怎样才能让它在一个outfile中编译?
更新
我试着像这样写
.ts
但是我收到了这个错误
错误TS6053:文件' / Users / admin / Documents / GitHub / falco-web / app / ** / * .ts'没找到。
文件在此路径下
"files": [
"app/**/*.ts"
]