2020-01-29 04:16:48 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2021-07-15 20:09:10 +02:00
|
|
|
"target": "es6",
|
2020-01-29 04:16:48 +01:00
|
|
|
"noImplicitAny": false,
|
2022-06-22 19:21:15 +02:00
|
|
|
"sourceMap": true,
|
2020-01-29 04:16:48 +01:00
|
|
|
"outDir": "dist/js",
|
2021-06-27 05:20:09 +02:00
|
|
|
"noEmitOnError": false,
|
2020-02-01 22:26:57 +01:00
|
|
|
"typeRoots": [ "node_modules/@types" ],
|
2020-02-25 06:38:03 +01:00
|
|
|
"resolveJsonModule": true,
|
2021-09-02 01:51:42 +02:00
|
|
|
"jsx": "react",
|
|
|
|
"lib": [
|
2022-06-22 19:21:15 +02:00
|
|
|
"es2019",
|
2021-09-02 01:51:42 +02:00
|
|
|
"dom",
|
|
|
|
"dom.iterable"
|
|
|
|
]
|
2020-01-29 04:16:48 +01:00
|
|
|
}
|
|
|
|
}
|