Co-authored-by: Anne-Marie <102995847+am-stead@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: docs-bot <77750099+docs-bot@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Óscar San José <oscarsj@github.com>
49 lines
999 B
JSON
49 lines
999 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitThis": false,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"docs-internal-data",
|
|
"src/codeql-queries/scripts/generate-code-scanning-query-list.ts",
|
|
"src/codeql-queries/scripts/generate-code-quality-query-list.ts"
|
|
],
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"*.d.ts",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
]
|
|
}
|