mirror of
https://github.com/curlconverter/curlconverter.git
synced 2022-05-22 02:35:29 +03:00
* 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.
25 lines
559 B
JSON
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"
|
|
]
|
|
}
|