2026-04-02 19:06:42 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2026-04-09 15:30:18 -04:00
|
|
|
"module": "nodenext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
2026-04-02 19:06:42 -05:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
2026-04-09 15:30:18 -04:00
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": false,
|
|
|
|
|
"sourceMap": false,
|
|
|
|
|
"resolveJsonModule": true
|
2026-04-02 19:06:42 -05:00
|
|
|
},
|
2026-04-11 11:29:08 -05:00
|
|
|
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.tsx"],
|
2026-04-09 15:30:18 -04:00
|
|
|
"exclude": ["src/__tests__", "node_modules", "dist"]
|
2026-04-02 19:06:42 -05:00
|
|
|
}
|