UNPKG

node-typescript-generator

Version:

This is a Node JS project generator with Express and all necessary libraries in Typescript.

28 lines 608 B
module.exports = { arrowParens: 'always', bracketSameLine: false, bracketSpacing: true, singleQuote: true, trailingComma: 'none', tabWidth: 4, semi: true, endOfLine: 'lf', singleAttributePerLine: true, experimentalTernaries: false, printWidth: 100, overrides: [ { files: '*.ts', options: { bracketSameLine: true, singleAttributePerLine: false } }, { files: 'package.json', options: { tabWidth: 2 } } ] };