mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-06 00:44:57 +05:30
42 lines
786 B
JSON
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"
|
|
]
|
|
}
|