Skip to content

Commit 0d7b181

Browse files
committed
refactor(tsconfig): sort json keys
1 parent 781db35 commit 0d7b181

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tsconfig.node.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"compilerOptions": {
3-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4-
"target": "ES2022",
5-
"lib": ["ES2023"],
6-
"module": "ESNext",
7-
"skipLibCheck": true,
8-
"moduleResolution": "bundler",
93
"allowImportingTsExtensions": true,
104
"isolatedModules": true,
5+
"lib": ["ES2023"],
6+
"module": "ESNext",
117
"moduleDetection": "force",
8+
"moduleResolution": "bundler",
129
"noEmit": true,
13-
"strict": true,
10+
"noFallthroughCasesInSwitch": true,
11+
"noUncheckedSideEffectImports": true,
1412
"noUnusedLocals": true,
1513
"noUnusedParameters": true,
16-
"noFallthroughCasesInSwitch": true,
17-
"noUncheckedSideEffectImports": true
14+
"skipLibCheck": true,
15+
"strict": true,
16+
"target": "ES2022",
17+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo"
1818
},
1919
"include": ["vite.config.ts"]
2020
}

0 commit comments

Comments
 (0)