mirror of
https://github.com/pseXperiments/freedit.git
synced 2026-01-09 19:57:54 -05:00
* chore: move rs code into `apps/server` * chore: scaffold vite/react app * feat: render raw html served by rust server in react app * chore: use `just` as tasks runner * doc: add main README * fix `dev-client` just script * refactor: write default config dirs relatively to exec bin
23 lines
479 B
JSON
23 lines
479 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2023"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|