feat: create tool script

This commit is contained in:
Ibrahima G. Coulibaly 2024-06-23 19:57:58 +01:00
commit a8cd385880
17 changed files with 217 additions and 38 deletions

View file

@ -2,7 +2,11 @@
"compilerOptions": {
"baseUrl": "./src",
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
@ -15,8 +19,21 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": ["vite/client", "vitest/globals", "@testing-library/jest-dom"]
"types": [
"vite/client",
"vitest/globals",
"@testing-library/jest-dom"
],
"paths": {
"@tools/*": [
"./tools/*"
]
}
},
"include": ["src"],
"exclude": ["node_modules"]
"include": [
"src"
],
"exclude": [
"node_modules"
]
}