2021-02-20 11:51:44 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-07-29 23:10:35 +02:00
|
|
|
"module": "CommonJS",
|
|
|
|
"target": "es5",
|
2021-03-02 22:48:36 +01:00
|
|
|
"lib": ["es2015", "DOM", "ES2019.Object"],
|
2021-02-20 11:51:44 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"declaration": true,
|
2023-03-18 06:14:05 +01:00
|
|
|
"outDir": "../dist_test",
|
2021-02-20 11:51:44 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"newLine": "LF",
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"incremental": true,
|
|
|
|
"strict": true,
|
|
|
|
"downlevelIteration": true,
|
2022-07-30 00:42:07 +02:00
|
|
|
"jsx": "react",
|
2021-02-20 11:51:44 +01:00
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
},
|
2023-03-18 06:14:05 +01:00
|
|
|
"include": ["../src", "."]
|
2021-02-20 11:51:44 +01:00
|
|
|
}
|