30 lines
778 B
JSON
30 lines
778 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"baseUrl": ".",
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"incremental": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"noEmit": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"plugins": [{ "name": "next" }],
|
||
|
"resolveJsonModule": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"target": "esnext",
|
||
|
"types": [
|
||
|
"jest",
|
||
|
"offscreencanvas",
|
||
|
"react/next",
|
||
|
"wicg-file-system-access"
|
||
|
]
|
||
|
},
|
||
|
"exclude": ["node_modules"],
|
||
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
|
||
|
}
|