2023-02-11 05:11:27 +02:00
|
|
|
{
|
2023-02-11 20:52:00 +02:00
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["dist", "node_modules"],
|
2023-02-11 05:11:27 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2023-02-11 20:52:00 +02:00
|
|
|
"module": "esnext",
|
|
|
|
"lib": ["dom", "esnext"],
|
|
|
|
"importHelpers": true,
|
2023-02-11 05:11:27 +02:00
|
|
|
"declaration": true,
|
2023-02-11 20:52:00 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./dist/esm",
|
2023-02-11 05:11:27 +02:00
|
|
|
"strict": true,
|
2023-02-11 20:52:00 +02:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": false,
|
2023-02-11 05:11:27 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
2023-02-11 20:52:00 +02:00
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
}
|
2023-02-11 05:11:27 +02:00
|
|
|
}
|