Added the CSV extraction script to get comments and classify accordingly

This commit is contained in:
Jimmy Royer 2024-09-10 13:43:09 -04:00
parent 29f7670fe7
commit 9cdfb06cab
8 changed files with 612 additions and 5 deletions

View file

@ -2,11 +2,15 @@
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"types": ["node", "axios"]
},
"exclude": ["node_modules", "**/*.test.ts"]
}