@qlik/tsconfig
v0.3.1
Published
Useful compiler options for compiling a TypeScript project
Readme
@qlik/tsconfig
Usage
@qlik/tsconfig/recommended.jsonTypescript recommended options. Suitable for typescript projectes using a bundler.@qlik/tsconfig/strictest.jsonTypescript recommended options, but with stricter checks.@qlik/tsconfig/node.jsTypescript recommended options for typescript projects targeted towards NodeJS.@qlik/tsconfig/react.jsonSame as recommended with React support.@qlik/tsconfig/svelte.jsonSame as recommended with Svelte support.
For example, in a Parcel project, create a tsconfig.json:
{
"extends": "@qlik/tsconfig/react.json",
"include": ["src"]
}What is a tsconfig.json
Read here https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
Examples of other tsconfig.json's can be found here https://github.com/tsconfig/bases?tab=readme-ov-file
