Files
curlconverter/tsconfig.json
Boris Verkhovskiy 39f01a5a47 report Bash parsing errors (#399)
* allow passing warnings list to *Warn() functions

that way if there's an error, we can catch the error, look at the
warnings that happened while parsing and show them to users.
2022-04-24 04:57:03 -07:00

25 lines
559 B
JSON

{
"compilerOptions": {
"rootDir": ".",
"outDir": "dist",
"pretty": true,
"sourceMap": true,
"strict": true,
"target": "es2018",
"lib": ["es2018"],
"moduleResolution": "node",
"module": "es2022",
"esModuleInterop": true,
"strictNullChecks": true,
"noUnusedParameters": false,
"noUnusedLocals": false,
"noImplicitReturns": true
},
"include": ["src/**/*", "test/**/*", "tools/**/*", "index.d.ts"],
"exclude": [
"tools/extract_curl_args.py",
"test/fixtures/**/*.*",
"node_modules"
]
}