jan/joi/tsconfig.json
Faisal Amir 1ffb7f213d
chore: setup jest for unit test hooks and component from joi (#3540)
* chore: setup jest for unit test hooks and component from joi

* chore: update gitignore

* chore: exclude jest setup file from tsconfig
2024-09-05 11:41:15 +07:00

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"]
}