Files
omni-tools/tsconfig.json
Ibrahima G. Coulibaly a8cd385880 feat: create tool script
2024-06-23 19:57:58 +01:00

40 lines
735 B
JSON

{
"compilerOptions": {
"baseUrl": "./src",
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": [
"vite/client",
"vitest/globals",
"@testing-library/jest-dom"
],
"paths": {
"@tools/*": [
"./tools/*"
]
}
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}