OpenPanel/packages/inferencer/tsconfig.json

17 lines
403 B
JSON
Raw Permalink Normal View History

2024-05-08 17:58:53 +00:00
{
"include": ["src"],
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"rootDir": "./src",
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": ["src/*"],
"@": ["src"],
"@test/*": ["test/*"],
"@test": ["test"]
},
"typeRoots": ["../../node_modules/@types"]
}
}