OpenPanel/packages/ui-tests/tsconfig.json
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

23 lines
704 B
JSON

{
"include": ["src"],
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"rootDir": "./src",
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"importHelpers": false,
"strict": true,
"paths": {
"@components/*": ["src/components/*"],
"@components": ["src/components"],
"@hooks/*": ["src/hooks/*"],
"@hooks": ["src/hooks"],
"@test/*": ["src/test/*"],
"@test": ["src/test"],
"@definitions/*": ["src/definitions/*"],
"@definitions": ["src/definitions"]
},
"typeRoots": ["./src/types", "../../node_modules/@types"]
}
}