cmake-ts
Version:
cmake-js rewrite in typescript to support advanced build configurations
41 lines (40 loc) • 1.16 kB
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,
"allowImportingTsExtensions": true,
"noEmit": true,
"lib": [
// target Node.js 12 https://node.green/#ES2019
"ES2019",
// https://node.green/#ES2020-features-String-prototype-matchAll
"ES2020.String"
],
"target": "ESNext",
"allowJs": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"module": "ESNext",
"moduleResolution": "node",
"importHelpers": false
},
"compileOnSave": false,
"include": ["./src", "./*.mts", "test/**/*.ts", "test/**/*.mts"],
"exclude": ["./node_modules", "./build", "test/fixtures"]
}