Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
idmytro committed Jun 6, 2024
1 parent b013506 commit 65ad00a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 9 deletions.
4 changes: 4 additions & 0 deletions _2024/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import antfu from '@antfu/eslint-config'
import noAutofix from 'eslint-plugin-no-autofix'

export default antfu(
{
files: ['tsconfig.json'],
rules: { 'jsonc/sort-keys': 0 },
},
{
plugins: {
'no-autofix': noAutofix,
Expand Down
30 changes: 21 additions & 9 deletions _2024/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@
{
"compilerOptions": {
"target": "ESNext",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["ESNext", "DOM"],
"useDefineForClassFields": true,
"lib": [
"DOM",
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true
"target": "ESNext",
"useDefineForClassFields": true
},
"references": [{ "path": "./tsconfig.node.json" }],
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
"include": [
"src/**/*.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}

0 comments on commit 65ad00a

Please sign in to comment.