From ce7d989b7d3f7c317b6f68caa62381fe449570ca Mon Sep 17 00:00:00 2001 From: Ivo Senner Date: Tue, 13 Dec 2016 15:08:32 +0100 Subject: [PATCH] Add tsconfig.json and tslint.json --- uikit/tsconfig.json | 19 +++++++++++++++++++ uikit/tslint.json | 3 +++ 2 files changed, 22 insertions(+) create mode 100644 uikit/tsconfig.json create mode 100644 uikit/tslint.json diff --git a/uikit/tsconfig.json b/uikit/tsconfig.json new file mode 100644 index 0000000000..9c36affeab --- /dev/null +++ b/uikit/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "uikit-tests.ts" + ] +} diff --git a/uikit/tslint.json b/uikit/tslint.json new file mode 100644 index 0000000000..192203ab54 --- /dev/null +++ b/uikit/tslint.json @@ -0,0 +1,3 @@ +{ + "extends": "../tslint.json" +} \ No newline at end of file