2021-12-08 09:33:25 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-09-18 09:46:42 +02:00
|
|
|
"lib": ["ES2017", "DOM"],
|
2021-12-08 09:33:25 +01:00
|
|
|
"target": "es5",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"module": "ESNext",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "types",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-01-14 07:49:24 +01:00
|
|
|
"emitDeclarationOnly": true,
|
2022-02-04 19:00:08 +01:00
|
|
|
"baseUrl": "./src",
|
|
|
|
"downlevelIteration": true
|
2021-12-08 09:33:25 +01:00
|
|
|
}
|
|
|
|
}
|