2022-12-25 12:48:18 -05:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
2023-01-02 14:13:45 -05:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
"rootDir": ".",
|
2022-12-25 12:48:18 -05:00
|
|
|
"outDir": "./build",
|
2023-01-02 14:13:45 -05:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"jsx": "react"
|
2022-12-25 12:48:18 -05:00
|
|
|
},
|
2023-01-08 05:27:37 -05:00
|
|
|
"include": ["src/**/*", "./src/types/index.d.ts"],
|
2024-12-07 15:48:32 -05:00
|
|
|
"types": ["node", "@testing-library/jest-dom"],
|
2023-01-08 05:27:37 -05:00
|
|
|
"typedocOptions": {
|
|
|
|
"categoryOrder": ["Model", "Component", "Provider", "*"],
|
|
|
|
"defaultCategory": "Component",
|
|
|
|
"categorizeByGroup": "false"
|
|
|
|
}
|
2022-12-25 12:48:18 -05:00
|
|
|
}
|