2018-02-20 00:04:38 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-03-26 23:48:14 +00:00
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"chai",
|
|
|
|
"lodash",
|
|
|
|
"enzyme",
|
|
|
|
"react",
|
|
|
|
"prop-types",
|
2018-04-04 21:21:06 +00:00
|
|
|
"jest",
|
2018-04-06 21:08:51 +00:00
|
|
|
"react-router",
|
2018-04-11 01:32:28 +00:00
|
|
|
"text-encoding",
|
|
|
|
"react-dnd",
|
|
|
|
"react-dnd-html5-backend"
|
2018-03-26 23:48:14 +00:00
|
|
|
],
|
2018-02-20 00:04:38 +00:00
|
|
|
"target": "es6",
|
2018-02-20 15:23:53 +00:00
|
|
|
"module": "es2015",
|
2018-02-20 00:04:38 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"lib": ["es6", "es2017", "dom"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"isolatedModules": false,
|
|
|
|
"jsx": "react",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitUseStrict": false,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"noLib": false,
|
|
|
|
"noEmitHelpers": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": false,
|
|
|
|
"sourceMap": true,
|
2018-02-23 23:33:34 +00:00
|
|
|
"baseUrl": "./",
|
2018-03-26 23:48:14 +00:00
|
|
|
"rootDir": "./src"
|
2018-02-24 19:08:02 +00:00
|
|
|
},
|
|
|
|
"exclude": ["./assets/*", "./build/*", "./node_modules/*"]
|
2018-02-20 00:04:38 +00:00
|
|
|
}
|