photos/tsconfig: remove duplicates

This commit is contained in:
Neeraj Gupta 2023-05-29 04:35:29 +05:30
parent 1e9384478e
commit c363f871a5

View file

@ -1,32 +1,20 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "es5",
"baseUrl": "./src",
"downlevelIteration": true,
"jsx": "preserve",
"jsxImportSource": "@emotion/react",
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictBindCallApply": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"noImplicitAny": false,
"useUnknownInCatchVariables": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": "./src",
"downlevelIteration": true,
"jsxImportSource": "@emotion/react",
"incremental": true,
"noUnusedLocals": false,
// "allowSyntheticDefaultImports": false,
"noFallthroughCasesInSwitch": false,
"noUnusedParameters": false
"target": "es5",
"useUnknownInCatchVariables": false
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
"exclude": ["node_modules", "out", ".next", "thirdparty"]