ente/web/packages/shared/tsconfig.json

17 lines
531 B
JSON
Raw Normal View History

2023-11-01 11:11:39 +00:00
{
2023-11-02 02:02:37 +00:00
"extends": "../../tsconfig.base.json",
2023-11-02 11:22:11 +00:00
"compilerOptions": {
"downlevelIteration": true,
"jsx": "preserve",
"jsxImportSource": "@emotion/react",
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictNullChecks": false,
"target": "es5",
"useUnknownInCatchVariables": false
},
2023-11-09 04:10:43 +00:00
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "themes/mui-theme.d.ts"]
2023-11-01 11:11:39 +00:00
}