2024-06-19 18:08:19 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": "./src",
|
|
|
|
|
"target": "esnext",
|
2025-03-31 01:27:44 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2024-06-19 18:08:19 +01:00
|
|
|
"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",
|
2025-03-31 01:27:44 +00:00
|
|
|
"types": ["vite/client", "vitest/globals", "@testing-library/jest-dom"],
|
2024-06-23 19:57:58 +01:00
|
|
|
"paths": {
|
2025-03-31 01:27:44 +00:00
|
|
|
"@tools/*": ["./tools/*"],
|
|
|
|
|
"@assets/*": ["./assets/*"],
|
|
|
|
|
"@components/*": ["./components/*"],
|
|
|
|
|
"@utils/*": ["./utils/*"]
|
2024-06-23 19:57:58 +01:00
|
|
|
}
|
2024-06-19 18:08:19 +01:00
|
|
|
},
|
2025-03-31 01:27:44 +00:00
|
|
|
"include": ["src", "./@types"],
|
|
|
|
|
"exclude": ["node_modules"]
|
2024-06-19 18:08:19 +01:00
|
|
|
}
|