omni/frontend/tsconfig.node.json
Edward Sammut Alessi 8dde49d4cd
refactor(frontend): replace .prettierrc with prettier.config.ts
Replace the .prettierrc json file with a typesafe prettier.config.ts which is now possible with node 24

Signed-off-by: Edward Sammut Alessi <edward.sammutalessi@siderolabs.com>
2025-10-29 13:34:55 +01:00

19 lines
383 B
JSON

{
"extends": "@tsconfig/node24/tsconfig.json",
"include": [
"vite.config.*",
"playwright.config.*",
"eslint.config.*",
"prettier.config.*",
"e2e/**/*"
],
"compilerOptions": {
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}