2022-12-06 13:21:17 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
2023-04-21 16:05:26 +02:00
|
|
|
"declaration": true,
|
2023-04-24 16:43:23 +02:00
|
|
|
"declarationMap": true,
|
2023-09-06 13:24:34 +02:00
|
|
|
"target": "ES2020",
|
|
|
|
"module": "Node16",
|
2022-12-06 13:21:17 +01:00
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "h",
|
|
|
|
"jsxFragmentFactory": "Fragment",
|
2023-02-16 01:01:18 +01:00
|
|
|
"moduleResolution": "Node16",
|
2022-12-06 13:21:17 +01:00
|
|
|
"sourceMap": true,
|
2023-09-06 13:24:34 +02:00
|
|
|
"lib": ["DOM", "ES2020"],
|
2022-12-06 13:21:17 +01:00
|
|
|
"outDir": "lib",
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"incremental": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"rootDir": "./src",
|
2023-09-06 13:24:34 +02:00
|
|
|
"typeRoots": ["./node_modules/@types"]
|
2022-12-06 13:21:17 +01:00
|
|
|
},
|
2023-09-06 13:24:34 +02:00
|
|
|
"include": ["src/**/*"]
|
2023-02-16 01:01:18 +01:00
|
|
|
}
|