Reputation: 39018
Not sure why, but getting a Parsing error in this tsconfig.js file I just created. Source: https://www.typescriptlang.org/docs/handbook/react-&-webpack.html
Thoughts?
{
"compilerOptions": {
"outDir": "./moonholdings/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es6",
"jsx": "react"
},
"include": [
"./app/**/*"
]
}
Upvotes: 0
Views: 175