2024-02-06 14:06:44 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"checkJs": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"],
|
2024-05-10 13:32:02 -06:00
|
|
|
"exclude": ["node_modules", "dist", "**/__tests__/*"]
|
2024-02-06 14:06:44 -07:00
|
|
|
}
|