typescript-react-webpack-app-creator
Version:
Npm module to create an empty react app with typescript as compiller, webpack as bundler and tslint included.
18 lines • 410 B
JSON
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"jsx": "react",
"strict": true,
"allowSyntheticDefaultImports": true
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules" // don't run on any code in the node_modules directory
]
}