@art-ws/config-ts 2.0.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 +6 -0
  2. package/tsconfig-node.json +27 -0
package/package.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "@art-ws/config-ts",
3
+ "version": "2.0.0",
4
+ "license": "UNLICENSED",
5
+ "type": "module"
6
+ }
@@ -0,0 +1,27 @@
1
+ /* To learn more about this file see: https://bun.sh/docs/typescript . */
2
+ {
3
+ "compilerOptions": {
4
+ // Enable latest features
5
+ "lib": ["ESNext"],
6
+ "target": "ESNext",
7
+ "module": "ESNext",
8
+ "moduleDetection": "force",
9
+ "jsx": "react-jsx",
10
+ "allowJs": true,
11
+ // Bundler mode
12
+ "moduleResolution": "bundler",
13
+ "declaration": true,
14
+ "verbatimModuleSyntax": true,
15
+ "noEmit": false,
16
+ // Best practices
17
+ "strict": true,
18
+ "skipLibCheck": true,
19
+ "noFallthroughCasesInSwitch": true,
20
+ // Some stricter flags
21
+ "noUnusedLocals": true,
22
+ "noUnusedParameters": true,
23
+ "noPropertyAccessFromIndexSignature": true,
24
+ "experimentalDecorators": true,
25
+ "resolveJsonModule": true
26
+ }
27
+ }