* [manifest-structure] - added manifest structure to template * Update README.md Co-authored-by: Anton Georgiev <antobinary@users.noreply.github.com> --------- Co-authored-by: Anton Georgiev <antobinary@users.noreply.github.com>
19 lines
358 B
JSON
19 lines
358 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist-tsc/",
|
|
"noImplicitAny": true,
|
|
"module": "es6",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": ["src/*"],
|
|
"paths": {
|
|
"*": ["node_modules"]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|