omni-tools/tsconfig.json
Ibrahima G. Coulibaly f678c76200 feat: stringify json
2025-03-08 07:11:57 +00:00

48 lines
894 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/*"
],
"@components/*": [
"./components/*"
],
"@utils/*": [
"./utils/*"
]
}
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}