diff options
Diffstat (limited to 'tsconfig.cli.json')
| -rw-r--r-- | tsconfig.cli.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tsconfig.cli.json b/tsconfig.cli.json new file mode 100644 index 0000000..4efc99c --- /dev/null +++ b/tsconfig.cli.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "outDir": "./out/cli", + "rootDir": "./src", + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true, + "target": "ESNext", + "types": ["node"], + "declaration": true, + "declarationDir": "./out/cli/types" + }, + "include": [ + "src/cli/**/*", + "src/main/overleafProtocol.ts" + ] +} |
