OpenPanel/packages/create-refine-app/tsconfig.json

21 lines
477 B
JSON
Raw Normal View History

2024-02-05 09:23:04 +00:00
{
"include": [
"src"
],
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"rootDir": "./src",
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"importHelpers": false,
"strict": true,
"paths": {
"@utils/*": ["src/utils/*"],
"@utils": ["src/utils"]
},
"typeRoots": [
"./src/types",
"../../node_modules/@types"
]
}
}