ente/apps/photos/tsconfig.json

19 lines
614 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",
"useUnknownInCatchVariables": false
2023-04-29 00:58:57 +00:00
},
2023-04-29 01:00:26 +00:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
"exclude": ["node_modules", "out", ".next", "thirdparty"]
2023-04-29 16:49:28 +00:00
}