@storm-software/tsconfig
Advanced tools
| { | ||
| "$schema": "https://json.schemastore.org/tsconfig", | ||
| "display": "Storm Software - Recommended TypeScript Config", | ||
| "extends": "@storm-software/tsconfig/base.json", | ||
| "compilerOptions": { | ||
| /* Base Options: */ | ||
| "allowJs": true, | ||
| "isolatedModules": true, | ||
| "incremental": false, | ||
| "composite": false, | ||
| "verbatimModuleSyntax": true, | ||
| /* If transpiling with TypeScript: */ | ||
| "sourceMap": true, | ||
| /* AND if you're building for a library: */ | ||
| "declaration": true, | ||
| /* AND if you're building for a library in a monorepo: */ | ||
| "declarationMap": true | ||
| }, | ||
| "include": ["@storm-software/tsconfig/reset.d.ts"] | ||
| } |
+48
-17
| { | ||
| "name": "@storm-software/tsconfig", | ||
| "version": "0.47.86", | ||
| "description": "A comprehensive package containing shared TypeScript configuration files for various Storm Software projects.", | ||
| "version": "0.48.0", | ||
| "private": false, | ||
| "description": "A package containing shared TypeScript configuration files (tsconfig.json) used in Storm Software projects.", | ||
| "keywords": ["storm-ops", "storm-software", "typescript", "tsconfig"], | ||
| "homepage": "https://stormsoftware.com", | ||
| "bugs": { | ||
| "url": "https://stormsoftware.com/support", | ||
| "email": "support@stormsoftware.com" | ||
| }, | ||
| "repository": { | ||
| "type": "github", | ||
| "url": "https://github.com/storm-software/storm-ops", | ||
| "url": "https://github.com/storm-software/storm-ops.git", | ||
| "directory": "packages/tsconfig" | ||
| }, | ||
| "homepage": "https://stormsoftware.com", | ||
| "bugs": "https://github.com/storm-software/storm-ops/issues", | ||
| "funding": { | ||
| "type": "github", | ||
| "url": "https://github.com/sponsors/storm-software" | ||
| }, | ||
| "license": "Apache-2.0", | ||
| "author": { | ||
@@ -17,17 +27,38 @@ "name": "Storm Software", | ||
| }, | ||
| "license": "Apache-2.0", | ||
| "private": false, | ||
| "keywords": [ | ||
| "monorepo", | ||
| "open-system", | ||
| "storm", | ||
| "storm-ops", | ||
| "storm-stack", | ||
| "stormstack", | ||
| "sullivanpj" | ||
| "maintainers": [ | ||
| { | ||
| "name": "Storm Software", | ||
| "email": "contact@stormsoftware.com", | ||
| "url": "https://stormsoftware.com" | ||
| } | ||
| ], | ||
| "dependencies": { "@total-typescript/ts-reset": "0.5.1" }, | ||
| "contributors": [ | ||
| { | ||
| "name": "Storm Software", | ||
| "email": "contact@stormsoftware.com", | ||
| "url": "https://stormsoftware.com" | ||
| } | ||
| ], | ||
| "sideEffects": false, | ||
| "type": "module", | ||
| "exports": { | ||
| "./package.json": "./package.json", | ||
| "./reset.d.ts": "./reset.d.ts", | ||
| "./base.json": "./base.json", | ||
| "./recommended.json": "./recommended.json", | ||
| "./bun.json": "./bun.json", | ||
| "./app.json": "./app.json", | ||
| "./library.json": "./library.json", | ||
| "./dom-app.json": "./dom-app.json", | ||
| "./dom-library.json": "./dom-library.json", | ||
| "./next.json": "./next.json", | ||
| "./react-native.json": "./react-native.json", | ||
| "./react.json": "./react.json", | ||
| "./script.json": "./script.json" | ||
| }, | ||
| "files": ["./*.json", "./reset.d.ts"], | ||
| "dependencies": { "@total-typescript/ts-reset": "^0.5.1" }, | ||
| "devDependencies": { "@types/node": "^25.3.0" }, | ||
| "publishConfig": { "access": "public" }, | ||
| "gitHead": "e5271419c3b88f3e1c2ce80d3580064792ec2427" | ||
| "gitHead": "f154a8058c15526cb0a89bd0007a5d607eac1336" | ||
| } |
+1
-1
@@ -30,3 +30,3 @@ <!-- START header --> | ||
| [](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/)  | ||
| [](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/)  | ||
@@ -33,0 +33,0 @@ <!-- prettier-ignore-start --> |
+1
-1
| { | ||
| "extends": "./base.json", | ||
| "extends": "@storm-software/tsconfig/base.json", | ||
| "$schema": "https://json.schemastore.org/tsconfig", | ||
@@ -4,0 +4,0 @@ "display": "Storm Software - Script TypeScript Config", |
Sorry, the diff of this file is too big to display
-20
| { | ||
| "$schema": "https://json.schemastore.org/tsconfig", | ||
| "display": "Storm Software - Core TypeScript Config", | ||
| "extends": "./base.json", | ||
| "compilerOptions": { | ||
| /* Base Options: */ | ||
| "allowJs": true, | ||
| "isolatedModules": true, | ||
| "incremental": false, | ||
| "composite": false, | ||
| "verbatimModuleSyntax": true, | ||
| /* If transpiling with TypeScript: */ | ||
| "sourceMap": true, | ||
| /* AND if you're building for a library: */ | ||
| "declaration": true, | ||
| /* AND if you're building for a library in a monorepo: */ | ||
| "declarationMap": true | ||
| } | ||
| } |
-25
| // packages/tsconfig/src/index.ts | ||
| var baseTsConfigJson = "./base.json"; | ||
| var bunTsConfigJson = "./bun.json"; | ||
| var nextTsConfigJson = "./next.json"; | ||
| var reactTsConfigJson = "./react.json"; | ||
| var reactNativeTsConfigJson = "./react-native.json"; | ||
| var scriptTsConfigJson = "./script.json"; | ||
| var appTsConfigJson = "./app.json"; | ||
| var coreTsConfigJson = "./core.json"; | ||
| var libraryTsConfigJson = "./library.json"; | ||
| var domLibraryTsConfigJson = "./dom-library.json"; | ||
| var domAppTsConfigJson = "./dom-app.json"; | ||
| export { | ||
| appTsConfigJson, | ||
| baseTsConfigJson, | ||
| bunTsConfigJson, | ||
| coreTsConfigJson, | ||
| domAppTsConfigJson, | ||
| domLibraryTsConfigJson, | ||
| libraryTsConfigJson, | ||
| nextTsConfigJson, | ||
| reactNativeTsConfigJson, | ||
| reactTsConfigJson, | ||
| scriptTsConfigJson | ||
| }; |
-11
| export const baseTsConfigJson = "./base.json"; | ||
| export const bunTsConfigJson = "./bun.json"; | ||
| export const nextTsConfigJson = "./next.json"; | ||
| export const reactTsConfigJson = "./react.json"; | ||
| export const reactNativeTsConfigJson = "./react-native.json"; | ||
| export const scriptTsConfigJson = "./script.json"; | ||
| export const appTsConfigJson = "./app.json"; | ||
| export const coreTsConfigJson = "./core.json"; | ||
| export const libraryTsConfigJson = "./library.json"; | ||
| export const domLibraryTsConfigJson = "./dom-library.json"; | ||
| export const domAppTsConfigJson = "./dom-app.json"; |
-34
| { | ||
| "inputs": { | ||
| "packages/tsconfig/src/index.ts": { | ||
| "bytes": 558, | ||
| "imports": [], | ||
| "format": "esm" | ||
| } | ||
| }, | ||
| "outputs": { | ||
| "dist/packages/tsconfig/index.js": { | ||
| "imports": [], | ||
| "exports": [ | ||
| "appTsConfigJson", | ||
| "baseTsConfigJson", | ||
| "bunTsConfigJson", | ||
| "coreTsConfigJson", | ||
| "domAppTsConfigJson", | ||
| "domLibraryTsConfigJson", | ||
| "libraryTsConfigJson", | ||
| "nextTsConfigJson", | ||
| "reactNativeTsConfigJson", | ||
| "reactTsConfigJson", | ||
| "scriptTsConfigJson" | ||
| ], | ||
| "entryPoint": "packages/tsconfig/src/index.ts", | ||
| "inputs": { | ||
| "packages/tsconfig/src/index.ts": { | ||
| "bytesInOutput": 459 | ||
| } | ||
| }, | ||
| "bytes": 743 | ||
| } | ||
| } | ||
| } |
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
0
-100%Yes
NaN33911
-72.13%15
-21.05%315
-17.75%