23 lines
389 B
JSON
23 lines
389 B
JSON
|
{
|
||
|
"extends": "../../tsconfig.base.json",
|
||
|
"include": ["src"],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"**/*.test.tsx",
|
||
|
"**/*.test.ts",
|
||
|
"**/*.spec.tsx",
|
||
|
"**/*.spec.ts",
|
||
|
"src/test-utils",
|
||
|
"dist"
|
||
|
],
|
||
|
"compilerOptions": {
|
||
|
"declaration": true,
|
||
|
"rootDir": "src",
|
||
|
"outDir": "./dist/types",
|
||
|
"baseUrl": "src",
|
||
|
"paths": {
|
||
|
"+*": ["./*"]
|
||
|
}
|
||
|
}
|
||
|
}
|