@xonovex/ts-config-base 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.
Files changed (2) hide show
  1. package/package.json +40 -0
  2. package/src/index.json +42 -0
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@xonovex/ts-config-base",
3
+ "version": "0.1.0",
4
+ "description": "Base TypeScript configuration for Xonovex projects",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Xonovex",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/xonovex/platform.git",
11
+ "directory": "packages/config/ts-config-base"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/xonovex/platform/issues"
15
+ },
16
+ "homepage": "https://github.com/xonovex/platform/tree/main/packages/config/ts-config-base#readme",
17
+ "publishConfig": {
18
+ "access": "public",
19
+ "registry": "https://registry.npmjs.org/"
20
+ },
21
+ "files": [
22
+ "src"
23
+ ],
24
+ "main": "./src/index.json",
25
+ "exports": {
26
+ "./package.json": "./package.json",
27
+ ".": "./src/index.json",
28
+ "./tsconfig.json": "./src/index.json",
29
+ "./src/index.json": "./src/index.json"
30
+ },
31
+ "scripts": {
32
+ "lint": "echo 'No linting needed for JSON-only config package'",
33
+ "lint:fix": "echo 'No linting needed for JSON-only config package'",
34
+ "fmt": "prettier --write .",
35
+ "fmt:check": "prettier --check .",
36
+ "typecheck": "echo 'No typechecking needed for JSON-only config package'",
37
+ "test": "echo 'No tests for config package'",
38
+ "build": "mkdir -p dist && echo \"No build needed for config package\" > dist/.gitkeep"
39
+ }
40
+ }
package/src/index.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+
5
+ "baseUrl": ".",
6
+ "module": "NodeNext",
7
+ "moduleResolution": "NodeNext",
8
+ "customConditions": ["source"],
9
+
10
+ "allowJs": true,
11
+ "resolveJsonModule": true,
12
+
13
+ "isolatedModules": true,
14
+ "moduleDetection": "force",
15
+ "verbatimModuleSyntax": true,
16
+ "forceConsistentCasingInFileNames": true,
17
+
18
+ "allowSyntheticDefaultImports": true,
19
+ "esModuleInterop": true,
20
+ "skipLibCheck": true,
21
+
22
+ "composite": true,
23
+ "incremental": true,
24
+
25
+ "declaration": true,
26
+
27
+ "sourceMap": true,
28
+ "declarationMap": true,
29
+
30
+ "noEmitOnError": true,
31
+
32
+ "noUnusedLocals": true,
33
+ "noUnusedParameters": true,
34
+ "noFallthroughCasesInSwitch": true,
35
+ "noUncheckedSideEffectImports": true,
36
+ "noUncheckedIndexedAccess": true,
37
+ "noImplicitOverride": true,
38
+ "strict": true,
39
+
40
+ "types": ["vitest/importMeta", "vitest/globals"]
41
+ }
42
+ }