@eclipse-glsp/ts-config
Version:
Shared Typescript configuration for GLSP projects
31 lines (30 loc) • 845 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"noImplicitOverride": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noImplicitReturns": true,
"strict": true,
"incremental": true,
// Needs to be disabled to support property injection
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"downlevelIteration": true,
"resolveJsonModule": true,
"module": "CommonJS",
"moduleResolution": "Node",
"target": "ES2019",
"jsx": "react",
"lib": ["ES2019", "dom"],
"sourceMap": true,
"types": ["node", "reflect-metadata"]
}
}