2017-09-24 19:06:28 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"sourceMap": true,
|
|
|
|
"strictNullChecks": true,
|
2017-12-30 15:29:04 -05:00
|
|
|
"module": "es2015",
|
2017-09-24 19:06:28 -07:00
|
|
|
"jsx": "react",
|
2017-12-30 15:29:04 -05:00
|
|
|
"target": "es2015",
|
2017-09-24 19:06:28 -07:00
|
|
|
"allowJs": true,
|
|
|
|
"baseUrl": "./common/",
|
2018-01-22 18:38:06 -05:00
|
|
|
"paths": {
|
2018-02-12 15:43:07 -05:00
|
|
|
"shared*": ["../shared*"],
|
|
|
|
"types*": ["../shared/types*"]
|
2018-01-22 18:38:06 -05:00
|
|
|
},
|
2018-02-12 15:43:07 -05:00
|
|
|
"lib": ["es2017", "dom"],
|
2017-09-24 19:06:28 -07:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"moduleResolution": "node",
|
2017-10-18 22:29:49 -04:00
|
|
|
"noEmitOnError": false,
|
|
|
|
"noUnusedLocals": true,
|
2018-03-07 18:36:05 -05:00
|
|
|
"noUnusedParameters": true,
|
2018-05-21 14:39:03 -04:00
|
|
|
"pretty": true,
|
|
|
|
"noErrorTruncation": true,
|
2018-03-07 18:36:05 -05:00
|
|
|
"noImplicitAny": true
|
2017-09-24 19:06:28 -07:00
|
|
|
},
|
2017-12-19 17:46:34 -05:00
|
|
|
"include": [
|
2018-04-13 13:02:00 -04:00
|
|
|
"./scripts",
|
2017-12-19 17:46:34 -05:00
|
|
|
"./common/",
|
2018-01-26 14:53:51 -05:00
|
|
|
"./electron-app/",
|
2018-02-12 15:43:07 -05:00
|
|
|
"./shared/",
|
2017-12-19 17:46:34 -05:00
|
|
|
"spec",
|
2018-04-06 16:52:48 -04:00
|
|
|
"./node_modules/types-rlp/index.d.ts",
|
2018-05-29 15:22:40 -04:00
|
|
|
"./node_modules/mycrypto-shepherd/dist/lib/types/btoa.d.ts",
|
|
|
|
"./node_modules/@keepkey/device-client/dist/device-client-manager.d.ts"
|
2017-12-19 17:46:34 -05:00
|
|
|
],
|
2017-09-24 19:06:28 -07:00
|
|
|
"awesomeTypescriptLoaderOptions": {
|
|
|
|
"transpileOnly": true
|
|
|
|
}
|
2017-12-28 14:54:07 -05:00
|
|
|
}
|