MyCrypto/tsconfig.json
William O'Beirne df52521c17 MEW-01-009 & MEW-01-010: Electron security fixes (#910)
* Handle opening of external links in electron. Minor refactor of window code.

* Convert updates from in-app modal to electron dialogs. Remove in-app code and preload bridge.

* Refine new window blocking. Re-enable tsconfig to look at electron-app.

* Clean up shared

* Whoops, wrong protocol format
2018-01-26 13:53:51 -06:00

34 lines
672 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"module": "es2015",
"jsx": "react",
"target": "es2015",
"allowJs": true,
"baseUrl": "./common/",
"paths": {
"shared*": ["../shared*"]
},
"lib": [
"es2017",
"dom"
],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": [
"./common/",
"./electron-app/",
"spec",
"./node_modules/types-rlp/index.d.ts"
],
"awesomeTypescriptLoaderOptions": {
"transpileOnly": true
}
}