* feat: add cli * chore: removed log * chore: update repo url * chore: updated program name * chore: updated program description * chore: removed yarn lock files
23 lines
508 B
JSON
23 lines
508 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"src/types/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"],
|
|
"include": ["src/**/*.ts"]
|
|
}
|