@planet-matrix/mobius-mono 0.3.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/.oxlintrc.json +5 -0
- package/CHANGELOG.md +23 -0
- package/README.md +24 -0
- package/dist/app/index.d.ts +2 -0
- package/dist/app/index.d.ts.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +40 -0
- package/dist/index.js.map +11 -0
- package/dist/internals/change/index.d.ts +7 -0
- package/dist/internals/change/index.d.ts.map +1 -0
- package/dist/internals/index.d.ts +3 -0
- package/dist/internals/index.d.ts.map +1 -0
- package/dist/internals/package/check-package-json.d.ts +2 -0
- package/dist/internals/package/check-package-json.d.ts.map +1 -0
- package/dist/internals/package/index.d.ts +2 -0
- package/dist/internals/package/index.d.ts.map +1 -0
- package/package.json +55 -0
- package/scripts/build.ts +52 -0
- package/src/app/index.ts +26 -0
- package/src/index.ts +1 -0
- package/src/internals/change/index.ts +49 -0
- package/src/internals/index.ts +2 -0
- package/src/internals/lint/oxfmtrc.json +20 -0
- package/src/internals/lint/oxlintrc.json +1771 -0
- package/src/internals/package/check-package-json.ts +3 -0
- package/src/internals/package/index.ts +1 -0
- package/src/internals/typescript/tsconfig.base.json +161 -0
- package/tsconfig.json +13 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./check-package-json"
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"include": [
|
|
4
|
+
"${configDir}/src/**/*"
|
|
5
|
+
],
|
|
6
|
+
"exclude": [
|
|
7
|
+
"${configDir}/node_modules/**/*",
|
|
8
|
+
"${configDir}/dist/**/*"
|
|
9
|
+
],
|
|
10
|
+
"compilerOptions": {
|
|
11
|
+
// Type Checking
|
|
12
|
+
"allowUnreachableCode": false,
|
|
13
|
+
"allowUnusedLabels": false,
|
|
14
|
+
"alwaysStrict": true,
|
|
15
|
+
"exactOptionalPropertyTypes": true,
|
|
16
|
+
"noFallthroughCasesInSwitch": false,
|
|
17
|
+
"noImplicitAny": true,
|
|
18
|
+
"noImplicitOverride": true,
|
|
19
|
+
"noImplicitReturns": true,
|
|
20
|
+
"noImplicitThis": true,
|
|
21
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
22
|
+
"noUncheckedIndexedAccess": true,
|
|
23
|
+
"noUnusedLocals": true,
|
|
24
|
+
"noUnusedParameters": true,
|
|
25
|
+
"strict": true,
|
|
26
|
+
"strictBindCallApply": true,
|
|
27
|
+
"strictBuiltinIteratorReturn": true,
|
|
28
|
+
"strictFunctionTypes": true,
|
|
29
|
+
"strictNullChecks": true,
|
|
30
|
+
"strictPropertyInitialization": true,
|
|
31
|
+
"useUnknownInCatchVariables": true,
|
|
32
|
+
// Modules
|
|
33
|
+
"allowArbitraryExtensions": true,
|
|
34
|
+
"allowImportingTsExtensions": true,
|
|
35
|
+
"allowUmdGlobalAccess": false,
|
|
36
|
+
"customConditions": [
|
|
37
|
+
"@planet-matrix/mobius-monorepo"
|
|
38
|
+
],
|
|
39
|
+
// align with Bun's recommended config, see https://bun.com/docs/typescript
|
|
40
|
+
"module": "preserve",
|
|
41
|
+
"moduleResolution": "bundler",
|
|
42
|
+
"moduleSuffixes": [
|
|
43
|
+
""
|
|
44
|
+
],
|
|
45
|
+
"noResolve": false,
|
|
46
|
+
"noUncheckedSideEffectImports": true,
|
|
47
|
+
"paths": {
|
|
48
|
+
"Project/*": [
|
|
49
|
+
"${configDir}/*"
|
|
50
|
+
],
|
|
51
|
+
"Source/*": [
|
|
52
|
+
"${configDir}/src/*"
|
|
53
|
+
],
|
|
54
|
+
},
|
|
55
|
+
"resolveJsonModule": true,
|
|
56
|
+
"resolvePackageJsonExports": true,
|
|
57
|
+
"resolvePackageJsonImports": true,
|
|
58
|
+
"rewriteRelativeImportExtensions": true,
|
|
59
|
+
"rootDir": "${configDir}/src",
|
|
60
|
+
"rootDirs": [],
|
|
61
|
+
"typeRoots": [
|
|
62
|
+
"${configDir}/node_modules/@types"
|
|
63
|
+
],
|
|
64
|
+
// "types": [],
|
|
65
|
+
// Emit
|
|
66
|
+
"declaration": true,
|
|
67
|
+
"declarationDir": "${configDir}/dist",
|
|
68
|
+
"declarationMap": true,
|
|
69
|
+
"downlevelIteration": true,
|
|
70
|
+
"emitBOM": false,
|
|
71
|
+
"emitDeclarationOnly": false,
|
|
72
|
+
"importHelpers": false,
|
|
73
|
+
"inlineSourceMap": false,
|
|
74
|
+
"inlineSources": false,
|
|
75
|
+
"mapRoot": "",
|
|
76
|
+
"newLine": "lf",
|
|
77
|
+
"noEmit": false,
|
|
78
|
+
"noEmitHelpers": false,
|
|
79
|
+
"noEmitOnError": false,
|
|
80
|
+
"outDir": "${configDir}/dist",
|
|
81
|
+
// "outFile": "",
|
|
82
|
+
"preserveConstEnums": true,
|
|
83
|
+
"removeComments": false,
|
|
84
|
+
"sourceMap": true,
|
|
85
|
+
"sourceRoot": "",
|
|
86
|
+
"stripInternal": true,
|
|
87
|
+
// JavaScript Support
|
|
88
|
+
// "allowJs": true,
|
|
89
|
+
"checkJs": false,
|
|
90
|
+
"maxNodeModuleJsDepth": 0,
|
|
91
|
+
// Editor Support"
|
|
92
|
+
"disableSizeLimit": true,
|
|
93
|
+
// "plugins": [],
|
|
94
|
+
// Interop Constraints
|
|
95
|
+
"allowSyntheticDefaultImports": true,
|
|
96
|
+
"erasableSyntaxOnly": true,
|
|
97
|
+
"esModuleInterop": true,
|
|
98
|
+
"forceConsistentCasingInFileNames": true,
|
|
99
|
+
"isolatedDeclarations": true,
|
|
100
|
+
"isolatedModules": true,
|
|
101
|
+
"preserveSymlinks": false,
|
|
102
|
+
"verbatimModuleSyntax": true,
|
|
103
|
+
// Backwards Compatibility
|
|
104
|
+
// Language and Environment
|
|
105
|
+
"emitDecoratorMetadata": true,
|
|
106
|
+
"experimentalDecorators": true,
|
|
107
|
+
"jsx": "react",
|
|
108
|
+
"jsxFactory": "React.createElement",
|
|
109
|
+
"jsxFragmentFactory": "React.Fragment",
|
|
110
|
+
// "jsxImportSource": "react",
|
|
111
|
+
"lib": [
|
|
112
|
+
"ESNext",
|
|
113
|
+
"DOM",
|
|
114
|
+
"WebWorker",
|
|
115
|
+
"ScriptHost"
|
|
116
|
+
],
|
|
117
|
+
"libReplacement": true,
|
|
118
|
+
// align with Bun's recommended config, see https://bun.com/docs/typescript
|
|
119
|
+
"moduleDetection": "force",
|
|
120
|
+
"noLib": false,
|
|
121
|
+
"target": "esnext",
|
|
122
|
+
"useDefineForClassFields": true,
|
|
123
|
+
// Compiler Diagnostics
|
|
124
|
+
"extendedDiagnostics": false,
|
|
125
|
+
"generateCpuProfile": "${configDir}/.mobius/.temp/profile.cpuprofile",
|
|
126
|
+
"listEmittedFiles": false,
|
|
127
|
+
"listFiles": false,
|
|
128
|
+
"noCheck": false,
|
|
129
|
+
"traceResolution": false,
|
|
130
|
+
// Projects
|
|
131
|
+
"composite": false,
|
|
132
|
+
"disableReferencedProjectLoad": true,
|
|
133
|
+
"disableSolutionSearching": false,
|
|
134
|
+
"disableSourceOfProjectReferenceRedirect": false,
|
|
135
|
+
"incremental": false,
|
|
136
|
+
"tsBuildInfoFile": "${configDir}/.mobius/.temp/.tsbuildinfo",
|
|
137
|
+
// Output Formatting
|
|
138
|
+
"noErrorTruncation": true,
|
|
139
|
+
"preserveWatchOutput": true,
|
|
140
|
+
"pretty": true,
|
|
141
|
+
// Completeness
|
|
142
|
+
"skipLibCheck": true,
|
|
143
|
+
// Command Line
|
|
144
|
+
// Watch Options
|
|
145
|
+
"assumeChangesOnlyAffectDirectDependencies": true,
|
|
146
|
+
},
|
|
147
|
+
"watchOptions": {
|
|
148
|
+
"watchFile": "useFsEvents",
|
|
149
|
+
"watchDirectory": "useFsEvents",
|
|
150
|
+
"fallbackPolling": "dynamicPriority",
|
|
151
|
+
"synchronousWatchDirectory": true,
|
|
152
|
+
// "excludeDirectories": [],
|
|
153
|
+
// "excludeFiles": []
|
|
154
|
+
},
|
|
155
|
+
"typeAcquisition": {
|
|
156
|
+
"enable": false,
|
|
157
|
+
"include": [],
|
|
158
|
+
"exclude": [],
|
|
159
|
+
"disableFilenameBasedTypeAcquisition": false
|
|
160
|
+
}
|
|
161
|
+
}
|