Package Exports
- @tsconfig/recommended/tsconfig.json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@tsconfig/recommended) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
The recommended base for a TSConfig.
Add the package to your "devDependencies"
:
npm install --save-dev @tsconfig/recommended
yarn add --dev @tsconfig/recommended
Add to your tsconfig.json
:
"extends": "@tsconfig/recommended/tsconfig.json"
The tsconfig.json
:
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"$schema": "https://json.schemastore.org/tsconfig"
}
You can find the code here.