Files
stacks.js/tsconfig.build.json
2021-05-11 19:58:42 +02:00

36 lines
886 B
JSON

{
"compilerOptions": {
"noEmit": true,
"target": "ES2017",
"module": "CommonJS",
"moduleResolution": "node",
"lib": [
"dom",
"esnext"
],
"importHelpers": false,
"declaration": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"pretty": true,
"removeComments": true,
"noImplicitAny": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"alwaysStrict": true,
"stripInternal": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": false,
"skipLibCheck": true,
"esModuleInterop": true,
"strictNullChecks": true
}
}