* chore: setup jest for unit test hooks and component from joi * chore: update gitignore * chore: exclude jest setup file from tsconfig
18 lines
442 B
JSON
18 lines
442 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"declaration": true,
|
|
"declarationDir": "dist/types",
|
|
"types": ["jest", "@testing-library/jest-dom"],
|
|
"module": "esnext",
|
|
"lib": ["es6", "dom", "es2016", "es2017"],
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "Node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|