@rws-air/ts-config
Version:
Shareable TypeScript configuration for all RWS projects
26 lines (25 loc) • 657 B
JSON
{
"compileOnSave": true,
"compilerOptions": {
"moduleResolution": "node",
"module": "CommonJS",
"target": "ES2019",
"newLine": "lf",
"lib": ["esnext", "dom"],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"incremental": true,
"removeComments": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true
}
}