mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-07-27 19:57:11 +00:00
28 lines
792 B
JSON
28 lines
792 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"two.js": ["src/two-override"]
|
|
},
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src", "test"]
|
|
}
|