Move tsconfig into ClientApp dir, since it's not needed at root

This commit is contained in:
SteveSandersonMS
2016-09-19 14:04:00 +01:00
parent a91b6a6b5c
commit 85dfdd9b50

View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipDefaultLibCheck": true,
"lib": [ "es6", "dom" ],
"types": [ "node" ]
},
"exclude": [ "bin", "node_modules" ],
"atom": { "rewriteTsconfig": false }
}