feat: create parser package in packages directory

This commit is contained in:
Reda Al Sulais
2023-08-20 15:31:40 +03:00
parent 222d8eed4e
commit 6141722b1f
11 changed files with 3788 additions and 3118 deletions

View File

@@ -0,0 +1,12 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "./dist",
"allowJs": false,
"preserveSymlinks": false,
"strictPropertyInitialization": false
},
"include": ["./src/**/*.ts", "./tests/**/*.ts"],
"typeRoots": ["./src/types"]
}