mirror of https://github.com/aminya/setup-cpp
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"incremental": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"preserveSymlinks": true,
|
|
"removeComments": false,
|
|
"skipLibCheck": true,
|
|
// target Node.js 12 https://node.green/#ES2019
|
|
"lib": ["ES2019", "dom"],
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"importHelpers": false,
|
|
"outDir": "./dist"
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"./src",
|
|
"dev/scripts",
|
|
"packages/untildify-user/untildify.ts",
|
|
"dev/docker/ci/docker-ci.mjs",
|
|
"./jest.config.ts",
|
|
"packages/os-env/src/escape-quotes.d.ts"
|
|
]
|
|
}
|