@sindresorhus/tsconfig
Advanced tools
Comparing version 5.0.0 to 5.1.0
{ | ||
"name": "@sindresorhus/tsconfig", | ||
"version": "5.0.0", | ||
"version": "5.1.0", | ||
"description": "Shared TypeScript config for my projects", | ||
"license": "MIT", | ||
"repository": "sindresorhus/tsconfig", | ||
"funding": "https://github.com/sponsors/sindresorhus", | ||
"author": { | ||
@@ -12,3 +13,4 @@ "name": "Sindre Sorhus", | ||
}, | ||
"main": "tsconfig.json", | ||
"exports": "./tsconfig.json", | ||
"sideEffects": false, | ||
"engines": { | ||
@@ -15,0 +17,0 @@ "node": ">=18" |
{ | ||
"compilerOptions": { | ||
// Disabled because of https://github.com/Microsoft/TypeScript/issues/29172 | ||
// "outDir": "dist", | ||
"outDir": "${configDir}/distribution", | ||
"module": "node16", | ||
@@ -15,7 +13,5 @@ "moduleResolution": "node16", | ||
], | ||
"allowSyntheticDefaultImports": true, // To provide backwards compatibility, Node.js allows you to import most CommonJS packages with a default import. This flag tells TypeScript that it's okay to use import on CommonJS modules. | ||
"resolveJsonModule": false, // ESM doesn't yet support JSON modules. | ||
"jsx": "react", | ||
"declaration": true, | ||
"pretty": true, | ||
"newLine": "lf", | ||
@@ -22,0 +18,0 @@ "stripInternal": true, |
3061
31