Files
optolith-client/tsconfig.json
T
Lukas Obermann 268b23c610 Many changes for TypeScript
- Added TypeScript, Webpack 2 and Redux with redux-immutable
- Converted many js files to ts or tsx
2016-12-30 00:51:19 +13:00

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"
]
}