- Added TypeScript, Webpack 2 and Redux with redux-immutable - Converted many js files to ts or tsx
25 lines
482 B
JSON
25 lines
482 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve",
|
|
"module": "es6",
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"esnext"
|
|
],
|
|
"noImplicitAny": false,
|
|
"outDir": "./dist/",
|
|
"removeComments": true,
|
|
"target": "es5"
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |