ente/web/apps/photos/tsconfig.json

29 lines
835 B
JSON
Raw Normal View History

{
2023-05-28 23:01:59 +00:00
"extends": "../../tsconfig.base.json",
"compilerOptions": {
2023-05-28 23:01:59 +00:00
"baseUrl": "./src",
"downlevelIteration": true,
2023-05-28 23:05:29 +00:00
"jsx": "preserve",
2023-05-28 23:01:59 +00:00
"jsxImportSource": "@emotion/react",
2023-05-28 23:05:29 +00:00
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictNullChecks": false,
"target": "es5",
2024-02-15 04:38:22 +00:00
"useUnknownInCatchVariables": false,
/* TODO(MR): Add to auth */
"moduleResolution": "bundler"
2023-04-29 00:58:57 +00:00
},
2023-11-08 09:34:03 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.js",
2024-04-09 04:35:37 +00:00
"../../packages/shared/themes/mui-theme.d.ts",
"../../packages/next/global-electron.d.ts"
2023-11-08 09:34:03 +00:00
],
2023-04-29 01:00:26 +00:00
"exclude": ["node_modules", "out", ".next", "thirdparty"]
2023-04-29 16:49:28 +00:00
}