2025-01-27 10:07:35 +00:00
|
|
|
{
|
2025-01-29 10:48:35 +00:00
|
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
2025-01-27 10:07:35 +00:00
|
|
|
"compilerOptions": {
|
2026-04-22 12:28:54 +00:00
|
|
|
"rootDir": "./src",
|
2026-04-13 09:30:22 +01:00
|
|
|
"target": "esnext",
|
|
|
|
|
"lib": ["dom", "es2022", "esnext"],
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"module": "es2022",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"types": [],
|
2025-01-27 10:07:35 +00:00
|
|
|
"outDir": "lib",
|
2025-01-29 10:48:35 +00:00
|
|
|
"jsx": "react-jsx",
|
2026-04-13 09:30:22 +01:00
|
|
|
"declarationMap": true,
|
|
|
|
|
"allowImportingTsExtensions": true
|
2025-01-27 10:07:35 +00:00
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|