26 lines
557 B
JSON
26 lines
557 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"removeComments": false,
|
|
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"skipLibCheck": true,
|
|
}
|
|
} |