mirror of
https://github.com/siderolabs/omni.git
synced 2026-01-21 02:41:26 +01:00
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>
19 lines
383 B
JSON
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"]
|
|
}
|
|
}
|