From 794ab39a6bba36abf43863ecdbb54b20b41cb634 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Fri, 8 Jan 2016 21:13:35 +0100 Subject: Extend tsconfig.json to make Atom happy --- tsconfig.json | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 1aef94c..f5c08b7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,10 +3,32 @@ "module": "commonjs", "target": "es5", "noImplicitAny": true, - "sourceMap": true + "sourceMap": true, + "noEmit": true }, "files": [ "require.d.ts", - "typings/tsd.d.ts" - ] + "typings/tsd.d.ts", + "src/app.ts", + "src/control/MapContext.ts", + "src/model/Direction.ts", + "src/model/Entity.ts", + "src/model/EntityPosition.ts", + "src/model/MapData.ts", + "src/model/Position.ts", + "src/model/TileData.ts", + "src/model/Transition.ts", + "src/util.ts", + "src/view/InputHandler.ts", + "src/view/MapView.ts" + ], + "filesGlob": [ + "require.d.ts", + "typings/tsd.d.ts", + "src/**/*.ts" + ], + "compileOnSave": false, + "atom": { + "rewriteTsconfig": true + } } -- cgit v1.2.3