ai-codereviewer/tsconfig.json

13 lines
247 B
JSON
Raw Normal View History

2023-03-22 21:16:13 +00:00
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true
},
"exclude": ["node_modules", "**/*.test.ts"]
}