mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-06 00:44:57 +05:30
28 lines
778 B
JSON
28 lines
778 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", "./@types"],
|
|
"exclude": ["node_modules"]
|
|
}
|