2021-04-09 12:29:59 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-02-02 22:48:08 +01:00
|
|
|
// We don't care about this since Webpack runs Babel after TypeScript
|
2021-04-09 12:29:59 +02:00
|
|
|
"target": "esnext",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
2021-10-28 14:51:04 +02:00
|
|
|
"dom.iterable",
|
2021-04-09 12:29:59 +02:00
|
|
|
"webworker",
|
2021-10-28 14:51:04 +02:00
|
|
|
"es2019"
|
2021-04-09 12:29:59 +02:00
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react"
|
|
|
|
},
|
|
|
|
"include": [
|
2021-08-16 13:21:33 +02:00
|
|
|
"src",
|
2022-02-20 12:39:06 +01:00
|
|
|
"tests",
|
|
|
|
"plugins",
|
2022-04-19 15:11:48 +02:00
|
|
|
"dev",
|
2021-04-09 12:29:59 +02:00
|
|
|
]
|
|
|
|
}
|