mirror of
https://github.com/Screenly/Anthias.git
synced 2025-12-23 22:38:05 -05:00
21 lines
568 B
JSON
21 lines
568 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["jest", "@testing-library/jest-dom", "node"],
|
|
"paths": {
|
|
"@/components/*": ["static/src/components/*"],
|
|
"@/constants": ["static/src/constants.ts"],
|
|
"@/hooks/*": ["static/src/hooks/*"],
|
|
"@/store/*": ["static/src/store/*"],
|
|
"@/sass/*": ["static/sass/*"],
|
|
"@/types": ["static/src/types.ts"],
|
|
"@/tests/*": ["static/src/tests/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"static/src/**/*.test.ts",
|
|
"static/src/**/*.test.tsx",
|
|
"static/src/setupTests.ts"
|
|
]
|
|
}
|