Skip to content

Commit

Permalink
🔥 remove ts extenxion from flow config
Browse files Browse the repository at this point in the history
add ts extenxion break go to definition  and coverage of vcode plugin
  • Loading branch information
Robin Louarn committed Jul 17, 2024
1 parent 6d0a91c commit 3daad28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ module.name_mapper='^@utils\/\(.*\)$' -> '<PROJECT_ROOT>/src/utils/\1'
module.name_mapper='^@constants\/\(.*\)$' -> '<PROJECT_ROOT>/src/constants/\1'
module.name_mapper='^@commands\/\(.*\)$' -> '<PROJECT_ROOT>/src/commands/\1'
exact_by_default=true
module.file_ext=.ts

[strict]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @flow
import { execa } from 'execa'
import chalk from 'chalk'

Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"noEmit": true
}
}

0 comments on commit 3daad28

Please sign in to comment.