Files
impersonator/tsconfig.json

30 lines
661 B
JSON
Raw Normal View History

2022-01-22 05:35:21 +05:30
{
"compilerOptions": {
2024-05-07 00:18:18 +10:00
"target": "ES2020",
2023-09-21 16:13:23 +05:30
"lib": ["dom", "dom.iterable", "esnext"],
2022-01-22 05:35:21 +05:30
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2024-05-07 00:18:18 +10:00
"noEmit": true,
"esModuleInterop": true,
2022-01-22 05:35:21 +05:30
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2024-05-07 00:18:18 +10:00
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
2022-01-22 05:35:21 +05:30
},
2024-05-07 00:18:18 +10:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
2022-01-22 05:35:21 +05:30
}