1.2.1 • Published 1 year ago

@type-config/standard v1.2.1

Weekly downloads
1
License
MIT
Repository
github
Last release
1 year ago

@type-config/standard

Typescript compiler options can be used in most cases. Use every type check rules, but nothing more(like no-used-something).

rules

{
  "compilerOptions": {
    "module": "commonjs",
    "target": "es6",
    "noEmitOnError": true,

    "declaration": true,
    "sourceMap": true,

    "moduleResolution": "node",
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,

    "strict": true
  }
}