Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: liyasthomas <liyascthomas@gmail.com> Co-authored-by: Gita Alekhya Paul <gitaalekhyapaul@gmail.com>
24 lines
599 B
JSON
24 lines
599 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"skipLibCheck": true,
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["@types/node", "@types/jest", "@relmify/jest-fp-ts"],
|
|
"outDir": "./lib/",
|
|
"rootDir": "./src/",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["./src", "./src/global.d.ts"],
|
|
"exclude": ["node_modules", "./src/__tests__"]
|
|
}
|