2022-11-24 17:03:19 +03:00
|
|
|
{
|
2023-03-08 00:52:21 +03:00
|
|
|
"extends": "@tsconfig/vite-react/tsconfig.json",
|
2022-11-24 17:03:19 +03:00
|
|
|
"compilerOptions": {
|
2023-03-01 19:14:14 +03:00
|
|
|
// Temporary loosen the type checking until we can address all the errors.
|
2023-04-07 20:20:06 +03:00
|
|
|
"jsx": "preserve",
|
2023-03-01 19:14:14 +03:00
|
|
|
"allowJs": true,
|
2023-08-30 15:40:17 +03:00
|
|
|
"strict": false,
|
|
|
|
// Allow importing pages with the .tsx extension.
|
|
|
|
"allowImportingTsExtensions": true
|
2022-11-24 17:03:19 +03:00
|
|
|
},
|
2023-03-01 19:14:14 +03:00
|
|
|
"include": ["src"],
|
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
2022-11-24 17:03:19 +03:00
|
|
|
}
|