mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
- had to update eslint deps - ran into https://github.com/palantir/blueprint/issues/4112 - had to move beta.svg out of static/ - had to fix prettier formatting changes - ran into https://github.com/facebook/jest/issues/7780
23 lines
652 B
JSON
23 lines
652 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src", "test"]
|
|
}
|