ente/web/apps/photos/tsconfig.json
Manav Rathi 2b7aa372bd
Switch
2024-04-09 10:33:54 +05:30

29 lines
835 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "./src",
"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,
/* TODO(MR): Add to auth */
"moduleResolution": "bundler"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.js",
"../../packages/shared/themes/mui-theme.d.ts",
"../../packages/next/global-electron.d.ts"
],
"exclude": ["node_modules", "out", ".next", "thirdparty"]
}