* chore: replace eslint & prettier w/ biomejs * fix syntax error in ci.yml workflow * ensure that build CI jobs only run if check job succeeds to save resources
17 lines
391 B
JSON
17 lines
391 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"jsxFactory": "createElement",
|
|
"target": "ES2018",
|
|
"lib": ["ES2018"],
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["components/**/*", "pages/**/*"]
|
|
}
|