2024-01-31 22:24:13 +03:00
|
|
|
{
|
2024-01-31 22:54:26 +03:00
|
|
|
"extends": "./node_modules/gts/tsconfig-google.json",
|
2024-01-31 22:24:13 +03:00
|
|
|
"compilerOptions": {
|
2024-01-31 22:54:26 +03:00
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "build",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-01-31 22:24:13 +03:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"noEmit": true,
|
2024-01-31 22:54:26 +03:00
|
|
|
"incremental": true,
|
2024-01-31 22:24:13 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
2024-01-31 22:54:26 +03:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
]
|
2024-01-31 22:24:13 +03:00
|
|
|
},
|
2024-01-31 22:54:26 +03:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"test/**/*.ts",
|
|
|
|
".next/types/**/*.ts"
|
|
|
|
]
|
2024-01-31 22:24:13 +03:00
|
|
|
}
|