habitica-sync/tsconfig.json

24 lines
440 B
JSON
Raw Permalink Normal View History

2020-10-25 16:55:59 -04:00
{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
2021-10-08 10:23:06 +05:30
"module": "esnext",
"jsx": "react",
"target": "es2017",
2020-10-25 16:55:59 -04:00
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
2020-10-26 11:58:14 -04:00
"importHelpers": true,
2020-10-25 16:55:59 -04:00
"lib": [
"dom",
"es5",
"scripthost",
"es2015"
]
},
"include": [
"**/*.ts"
2021-10-10 21:08:13 -07:00
, "view/TodoItem.tsx" ]
2020-10-25 16:55:59 -04:00
}