{
"compilerOptions": {
"noStrictGenericChecks": true,
"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipDefaultLibCheck": true,
"lib": ["es6", "dom"],
"types": ["node"]
},
"exclude": ["bin", "node_modules"],
"atom": {
"rewriteTsconfig": false
}
}
Run Code Online (Sandbox Code Playgroud)
我正在尝试在我的 SQL 查询中使用它,就像它在 MSDN 上的下面链接中显示的那样。关键字 JSON 没有变蓝并给出错误
“JSON”附近的语法不正确
它出什么问题了?
编辑:我正在为 SQL Server 2014 测试它。查询是
SELECT * FROM food FOR JSON AUTO
Run Code Online (Sandbox Code Playgroud)