28 lines
899 B
JSON
28 lines
899 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"target": "ES2022",
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"jsx": "preserve",
|
|
"noUncheckedIndexedAccess": true,
|
|
"baseUrl": ".",
|
|
},
|
|
"include": ["src/**/*", "types/*", "server.ts", "node_modules/vite/types/*", "next-env.d.ts"],
|
|
} |