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