2022-09-02 11:17:39 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
2022-12-13 13:21:30 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-09-02 11:17:39 +00:00
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-12-13 13:21:30 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2022-09-02 11:17:39 +00:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2022-12-13 13:21:30 +00:00
|
|
|
"noEmit": true,
|
2022-09-02 11:17:39 +00:00
|
|
|
"jsx": "preserve",
|
2022-09-02 11:51:00 +00:00
|
|
|
"incremental": true,
|
2022-12-13 13:21:30 +00:00
|
|
|
"baseUrl": "src"
|
2022-09-02 11:17:39 +00:00
|
|
|
},
|
2022-12-13 13:21:30 +00:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/types/custom.d.ts"],
|
2022-09-02 11:17:39 +00:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|