mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-04-21 07:22:47 -04:00
* chore: migrate to vitest * test: speed up some suites by sharing sessions and mocking expensive non-tested actions * test: refactor some tests to verify behavior instead of implementation details * chore: fix linting issues
22 lines
474 B
JSON
22 lines
474 B
JSON
{
|
|
"include": ["app/**/*"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"types": ["bun", "node", "vite/client"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"paths": {
|
|
"~/*": ["./app/*"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
}
|
|
}
|