TypeScript-React-Redux-Starter/tsconfig.json

19 строки
380 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"jsx": "react",
"sourceMap": true,
"removeComments": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"lib": ["es5", "es2015", "dom", "scripthost"]
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules"
]
}