2022-03-25 16:54:30 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"jsx": "react",
|
2025-07-14 22:49:14 +02:00
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ES2022", "DOM"],
|
2026-04-13 21:44:47 +02:00
|
|
|
"module": "preserve",
|
|
|
|
|
"moduleResolution": "bundler",
|
2022-03-25 16:54:30 +01:00
|
|
|
"declaration": true,
|
|
|
|
|
"noEmit": true,
|
2026-04-13 21:44:47 +02:00
|
|
|
"rootDir": "src",
|
|
|
|
|
"types": ["jest", "node"],
|
2026-05-28 10:42:32 +02:00
|
|
|
"outDir": "dist"
|
2022-03-25 16:54:30 +01:00
|
|
|
},
|
2026-04-23 12:03:57 +02:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["src/__tests__/react-19_2/**/*"]
|
2022-03-25 16:54:30 +01:00
|
|
|
}
|