omni-tools/tsconfig.json
Ibrahima G. Coulibaly 2f6c16f274 fix: create tool
2024-06-23 20:37:17 +01:00

42 lines
786 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/*"
],
"@assets/*": [
"./assets/*"
]
}
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}