@simple-module-py/tsconfig
v0.0.15
Published
Shared TypeScript compiler options (base.json) for simple_module apps
Maintainers
Readme
@simple-module-py/tsconfig
Shared TypeScript compiler options for simple_module apps. One base.json that every tsconfig.json in the framework and its modules extends.
Install
npm install --save-dev @simple-module-py/tsconfigWhat it provides
base.json— the canonical compiler options for simple_module apps. Targets ES2022,strict: true,module: "ESNext",moduleResolution: "bundler", JSXreact-jsx,allowImportingTsExtensions: true,verbatimModuleSyntax: true.
Usage
In your app's tsconfig.json:
{
"extends": "@simple-module-py/tsconfig/base.json",
"include": ["client_app/**/*.ts", "client_app/**/*.tsx"]
}Override any option as needed — extends merges.
Depends on
Nothing. This is a pure JSON config package.
License
MIT — see LICENSE.
