Skip to content

Commit

Permalink
test: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Aug 13, 2024
1 parent fb60f95 commit 903aca7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
File renamed without changes.
File renamed without changes.
25 changes: 12 additions & 13 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
"compilerOptions": {
"target": "esnext",
"module": "ESNext",
"moduleResolution": "node",
"baseUrl": "./",
"jsx": "preserve",
"declaration": true,
"skipLibCheck": true,
"lib": ["dom", "es2017"],
"jsx": "react",
"strict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"declaration": true,
"paths": {
"@/*": [
"src/*"
],
"@@/*": [
".dumi/tmp/*"
],
"rc-footer": [
"src/index.ts"
]
},
"@/*": ["src/*"],
"@@/*": [".dumi/tmp/*"],
"rc-footer": ["src/index.tsx"]
}
}
}

0 comments on commit 903aca7

Please sign in to comment.