18 lines
299 B
JSON
18 lines
299 B
JSON
|
|
{
|
||
|
|
"extends": "../../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"rootDir": "src",
|
||
|
|
"outDir": "dist",
|
||
|
|
"jsx": "react-jsx"
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist",
|
||
|
|
"**/*.test.ts",
|
||
|
|
"**/*.test.tsx",
|
||
|
|
"**/*.spec.ts",
|
||
|
|
"**/*.spec.tsx"
|
||
|
|
]
|
||
|
|
}
|