From c033a87266851ed739aa9149cfb9e8a4fb8a855f Mon Sep 17 00:00:00 2001 From: curtstate Date: Wed, 14 Jun 2017 11:16:00 -0700 Subject: [PATCH] adding tsconfig.json --- types/fingerprintjs2/tsconfig.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 types/fingerprintjs2/tsconfig.json diff --git a/types/fingerprintjs2/tsconfig.json b/types/fingerprintjs2/tsconfig.json new file mode 100644 index 0000000000..38b2edb332 --- /dev/null +++ b/types/fingerprintjs2/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6", + "dom" + ], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": false, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "fingerprintjs2-tests.ts" + ] +}