No inputs were found in config file ‘C:/Users/xxxxx/Desktop/TypeScript/Paper/tsconfig.json‘. Spe

问题说明:
No inputs were found in config file ‘C:/Users/xxxxx/Desktop/TypeScript/Paper/tsconfig.json’. Specified ‘include’ paths were ‘[“.src/**/*”]’ and ‘exclude’ paths were ‘[“./dist”]’.

问题分析:
1)问题一:你的路径src目录里面没有ts文件,故报错
2)问题二:你得路径书写方式错了

问题解决:
1)针对问题一,在src目录下面新建ts文件即可
2)针对问题二,修改路径书写方式,如该问题中,就是路径书写方式错了,路径正确为:[“./src//*“] ,而不是 [”.src//*”],遗漏了一个斜杠/

你可能感兴趣的:(语言问题,c语言,typescript,json)