diff options
author | 2018-09-23 17:32:39 +0100 | |
---|---|---|
committer | 2018-09-23 17:32:39 +0100 | |
commit | 47b2298453692ae7447bfe4eba5f172f75cc240d (patch) | |
tree | 85af867d23d218c0896ba74c570aa84d6343c1ba /tsconfig.json | |
parent | 436f4551914fb24f2ba535291c69730a4154dec6 (diff) |
Rewrite to trust Keybase users instead of a hardcoded public key
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..fef5cfe --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "outDir": "./dist/", + "sourceMap": true, + "noImplicitAny": true, + "module": "commonjs", + "target": "es6", + "allowJs": true, + "moduleResolution": "node", + "lib": ["esnext", "dom"], + "jsx": "react", + "allowSyntheticDefaultImports": true, + "typeRoots": ["node_modules/@types", "node_modules/web-ext-types"] + }, + "include": ["./src/**/*"], + "exclude": ["node_modules"] +} |