2026-07-16 06:19:58 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"isolatedModules": true,
|
2026-08-10 08:53:18 +00:00
|
|
|
"types": [],
|
2026-07-16 06:19:58 -04:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["./**/*.ts"],
|
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|