2021-01-02 22:59:33 -08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowJs": true,
|
2021-08-21 22:39:38 -07:00
|
|
|
"baseUrl": ".",
|
2021-01-02 22:59:33 -08:00
|
|
|
"esModuleInterop": true,
|
2021-08-21 22:39:38 -07:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "preserve",
|
2022-03-14 20:59:06 -07:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
|
2021-01-02 22:59:33 -08:00
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
2021-08-21 22:39:38 -07:00
|
|
|
"noEmit": true,
|
2021-08-14 22:13:55 -07:00
|
|
|
"noImplicitReturns": true,
|
2022-11-02 21:35:25 -07:00
|
|
|
"plugins": [{ "name": "next" }],
|
2021-01-02 22:59:33 -08:00
|
|
|
"resolveJsonModule": true,
|
2021-08-21 22:39:38 -07:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
2022-03-25 19:54:53 -07:00
|
|
|
"target": "esnext",
|
2024-02-05 21:33:21 -08:00
|
|
|
"types": ["jest", "offscreencanvas", "wicg-file-system-access"]
|
2021-01-02 22:59:33 -08:00
|
|
|
},
|
2021-08-21 22:39:38 -07:00
|
|
|
"exclude": ["node_modules"],
|
2024-02-05 21:33:21 -08:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
2021-01-02 22:59:33 -08:00
|
|
|
}
|