add setup to compile ts files to compiled_app folder

This commit is contained in:
Labhansh Agrawal 2019-09-30 10:04:30 +05:30 committed by Benjamin Staneck
parent f07963f930
commit 7874fa813a
7 changed files with 108 additions and 8 deletions

22
lib/tsconfig.json Normal file
View file

@ -0,0 +1,22 @@
{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"downlevelIteration": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["dom", "es2017"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"preserveConstEnums": true,
"removeComments": false,
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "es6"
},
"include": [
"./**/*"
]
}