ente/packages/accounts/tsconfig.json

22 lines
578 B
JSON
Raw Normal View History

2023-11-01 07:44:46 +00:00
{
2023-11-01 11:36:03 +00:00
"extends": "../../tsconfig.base.json",
2023-11-02 07:19:01 +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-02 03:36:31 +00:00
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
2023-11-08 09:34:03 +00:00
"../shared/theme/mui-theme.d.ts"
2023-11-02 03:36:31 +00:00
]
2023-11-01 07:44:46 +00:00
}