@brnshkr/config 0.0.1-alpha.2

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.
@@ -0,0 +1,74 @@
1
+ {
2
+ // @see https://www.typescriptlang.org/tsconfig
3
+ "$schema": "https://json.schemastore.org/tsconfig",
4
+ "exclude": [
5
+ "../**/.cache/**",
6
+ "../**/.changeset/**",
7
+ "../**/.git/objects/**",
8
+ "../**/.git/subtree-cache/**",
9
+ "../**/.hg/store/**",
10
+ "../**/.history/**",
11
+ "../**/.idea/**",
12
+ "../**/.next/**",
13
+ "../**/.nuxt/**",
14
+ "../**/.output/**",
15
+ "../**/.svelte-kit/**",
16
+ "../**/.temp/**",
17
+ "../**/.tmp/**",
18
+ "../**/.vercel/**",
19
+ "../**/.vite-inspect/**",
20
+ "../**/.vitepress/cache/**",
21
+ "../**/.vscode/**",
22
+ "../**/.yarn/**",
23
+ "../**/__snapshots__/**",
24
+ "../**/bower_components/**",
25
+ "../**/coverage/**",
26
+ "../**/dist/**",
27
+ "../**/node_modules/**",
28
+ "../**/output/**",
29
+ "../**/temp/**",
30
+ "../**/tmp/**",
31
+ "../**/vendor/**"
32
+ ],
33
+ "compilerOptions": {
34
+ // Language and Environment
35
+ "lib": ["ESNext", "DOM", "DOM.Iterable"],
36
+ "moduleDetection": "force",
37
+ "target": "esnext",
38
+
39
+ // Modules
40
+ "allowImportingTsExtensions": true,
41
+ "module": "esnext",
42
+ "moduleResolution": "bundler",
43
+ "noUncheckedSideEffectImports": true,
44
+ "resolveJsonModule": true,
45
+
46
+ // Emit
47
+ "noEmit": true,
48
+ "sourceMap": true,
49
+
50
+ // Completeness
51
+ "skipLibCheck": true,
52
+
53
+ // JavaScript Support
54
+ "allowJs": true,
55
+ "checkJs": true,
56
+
57
+ // Interop Constraints
58
+ "esModuleInterop": true,
59
+ "forceConsistentCasingInFileNames": true,
60
+ "verbatimModuleSyntax": true,
61
+
62
+ // Type Checking
63
+ "allowUnreachableCode": false,
64
+ "allowUnusedLabels": false,
65
+ "noFallthroughCasesInSwitch": true,
66
+ "noImplicitOverride": true,
67
+ "noImplicitReturns": true,
68
+ "noPropertyAccessFromIndexSignature": true,
69
+ "noUncheckedIndexedAccess": true,
70
+ "noUnusedLocals": true,
71
+ "noUnusedParameters": true,
72
+ "strict": true
73
+ }
74
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "./node_modules/@brnshkr/config/conf/tsconfig.json"
3
+ }