@dcf-micro/tsconfig 5.5.9

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,40 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Base",
4
+ "compilerOptions": {
5
+ "composite": false,
6
+ "target": "ESNext",
7
+
8
+ "moduleDetection": "force",
9
+ "experimentalDecorators": true,
10
+
11
+ "baseUrl": ".",
12
+ "module": "ESNext",
13
+
14
+ "moduleResolution": "node",
15
+ "resolveJsonModule": true,
16
+
17
+ "strict": true,
18
+ "strictNullChecks": true,
19
+ "noFallthroughCasesInSwitch": true,
20
+ "noImplicitAny": true,
21
+ "noImplicitOverride": true,
22
+ "noImplicitThis": true,
23
+ "noUncheckedIndexedAccess": true,
24
+ "noUnusedLocals": true,
25
+ "noUnusedParameters": true,
26
+
27
+ "inlineSources": false,
28
+ "noEmit": true,
29
+ "removeComments": true,
30
+ "sourceMap": false,
31
+ "allowSyntheticDefaultImports": true,
32
+ "esModuleInterop": true,
33
+ "forceConsistentCasingInFileNames": true,
34
+ "isolatedModules": true,
35
+ "verbatimModuleSyntax": true,
36
+ "skipLibCheck": true,
37
+ "preserveWatchOutput": true
38
+ },
39
+ "exclude": ["**/node_modules/**", "**/dist/**", "**/.turbo/**"]
40
+ }
package/library.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Web Application",
4
+ "extends": "./base.json",
5
+ "compilerOptions": {
6
+ "jsx": "preserve",
7
+ "lib": ["ESNext", "DOM", "DOM.Iterable"],
8
+ "useDefineForClassFields": true,
9
+ "moduleResolution": "bundler",
10
+ "declaration": true,
11
+ "noEmit": false
12
+ }
13
+ }
package/node.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Node Config",
4
+ "extends": "./base.json",
5
+ "compilerOptions": {
6
+ "composite": false,
7
+ "lib": ["ESNext"],
8
+ "baseUrl": "./",
9
+ "types": ["node"],
10
+ "noImplicitAny": true
11
+ }
12
+ }
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@dcf-micro/tsconfig",
3
+ "version": "5.5.9",
4
+ "homepage": "https://github.com/vbenjs/vue-vben-admin",
5
+ "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
9
+ "directory": "internal/tsconfig"
10
+ },
11
+ "license": "MIT",
12
+ "type": "module",
13
+ "files": [
14
+ "base.json",
15
+ "library.json",
16
+ "node.json",
17
+ "web-app.json",
18
+ "web.json"
19
+ ],
20
+ "dependencies": {
21
+ "@dcf-micro/types": "workspace:*",
22
+ "vite": "catalog:"
23
+ }
24
+ }
package/web-app.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Web Application",
4
+ "extends": "./web.json",
5
+ "compilerOptions": {
6
+ "types": ["vite/client", "@dcf-micro/types/global"]
7
+ }
8
+ }
package/web.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Web Package",
4
+ "extends": "./base.json",
5
+ "compilerOptions": {
6
+ "jsx": "preserve",
7
+ "jsxImportSource": "vue",
8
+ "lib": ["ESNext", "DOM", "DOM.Iterable"],
9
+ "useDefineForClassFields": true,
10
+ "moduleResolution": "bundler",
11
+ "types": ["vite/client"],
12
+ "declaration": false
13
+ }
14
+ }