@marklai/shared-config-typescript 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +22 -0
  2. package/config.json +28 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # Shared Config Typescript
2
+
3
+ Shared TypeScript configuration.
4
+
5
+ ## 📦 Installation
6
+
7
+ > Pre-Requirements: Set up [Typescript](https://www.typescriptlang.org/)
8
+
9
+ ```bash
10
+ pnpm add -D @marklai/shared-config-typescript typescript
11
+ ```
12
+
13
+ ## 🚀 Quick Start
14
+
15
+ Create or update your `tsconfig.json` file:
16
+
17
+ ```json
18
+ {
19
+ "extends": "@marklai/shared-config-typescript"
20
+ // Your project-specific overrides
21
+ }
22
+ ```
package/config.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "esnext",
4
+ "lib": ["DOM", "ESNext"],
5
+ "module": "NodeNext",
6
+ "moduleResolution": "NodeNext",
7
+ "allowJs": false,
8
+ "resolveJsonModule": true,
9
+ "isolatedModules": true,
10
+ "noEmit": true,
11
+
12
+ "emitDecoratorMetadata": true,
13
+ "experimentalDecorators": true,
14
+
15
+ "jsx": "react-jsx",
16
+
17
+ "strict": true,
18
+ "allowSyntheticDefaultImports": true,
19
+ "forceConsistentCasingInFileNames": true,
20
+ "allowUnreachableCode": false,
21
+ "allowUnusedLabels": false,
22
+ "noImplicitOverride": true,
23
+ "noImplicitReturns": true,
24
+ "noUnusedLocals": true,
25
+ "noUnusedParameters": true,
26
+ "noFallthroughCasesInSwitch": true
27
+ }
28
+ }
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@marklai/shared-config-typescript",
3
+ "version": "0.0.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/marklai1998/shared-configs.git"
7
+ },
8
+ "exports": {
9
+ ".": "./config.json"
10
+ },
11
+ "license": "UNLICENSED",
12
+ "type": "module",
13
+ "files": [
14
+ "config.json"
15
+ ],
16
+ "devDependencies": {
17
+ "typescript": "5.9.3"
18
+ },
19
+ "peerDependencies": {
20
+ "typescript": "^5.0.0"
21
+ },
22
+ "engines": {
23
+ "node": ">=20"
24
+ }
25
+ }