@modern-admin/tsconfig 0.1.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.
package/base.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "target": "ES2022",
5
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
6
+ "module": "ESNext",
7
+ "moduleResolution": "Bundler",
8
+ "esModuleInterop": true,
9
+ "allowSyntheticDefaultImports": true,
10
+ "resolveJsonModule": true,
11
+ "isolatedModules": true,
12
+ "verbatimModuleSyntax": false,
13
+ "forceConsistentCasingInFileNames": true,
14
+ "strict": true,
15
+ "noUncheckedIndexedAccess": true,
16
+ "noImplicitOverride": true,
17
+ "skipLibCheck": true,
18
+ "experimentalDecorators": true,
19
+ "emitDecoratorMetadata": true,
20
+ "useDefineForClassFields": false,
21
+ "composite": true,
22
+ "declaration": true,
23
+ "declarationMap": true,
24
+ "sourceMap": true,
25
+ "incremental": true
26
+ }
27
+ }
package/node.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./base.json",
4
+ "compilerOptions": {
5
+ "lib": ["ES2022"],
6
+ "module": "ESNext",
7
+ "moduleResolution": "Bundler",
8
+ "types": ["bun"]
9
+ }
10
+ }
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@modern-admin/tsconfig",
3
+ "version": "0.1.0",
4
+ "description": "Shared TypeScript configuration presets for the Modern Admin monorepo.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/modern-admin/modern-admin.git",
9
+ "directory": "packages/tsconfig"
10
+ },
11
+ "files": [
12
+ "base.json",
13
+ "node.json",
14
+ "react.json"
15
+ ],
16
+ "publishConfig": {
17
+ "registry": "https://registry.npmjs.org",
18
+ "access": "public"
19
+ }
20
+ }
package/react.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./base.json",
4
+ "compilerOptions": {
5
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
6
+ "jsx": "preserve",
7
+ "module": "ESNext",
8
+ "moduleResolution": "Bundler",
9
+ "types": ["bun"]
10
+ }
11
+ }