@reflex-stack/tsp 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.
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@reflex-stack/tsp-example-package",
3
+ "version": "0.1.0",
4
+ "author": "Alexis Bouhet",
5
+ "license": "MIT",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "type": "module",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "./submodule": {
15
+ "types": "./dist/submodule/index.d.ts",
16
+ "default": "./dist/submodule/index.js"
17
+ }
18
+ },
19
+ "tsp": {
20
+ "src": "./src",
21
+ "dist": "./dist",
22
+ "tmp": "./tmp",
23
+ "reports": "./reports",
24
+ "generate-json-report": false,
25
+ "generate-svg-report": true
26
+ },
27
+ "scripts": {
28
+ "build": "tsp build",
29
+ "test": "tsp build --noSizeReport && tsp test --noIntro",
30
+ "publish": "tsp build && tsp test --noIntro && tsp publish --noIntro"
31
+ },
32
+ "dependencies": {
33
+ "@reflex-stack/tsp": "0.1.0"
34
+ }
35
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "compilerOptions": {
3
+ // Input and output
4
+ "allowJs": false,
5
+ // Compiler options
6
+ "strict": false,
7
+ //
8
+ "target" : "ES2023",
9
+ "lib": ["DOM", "ES2023"],
10
+ //
11
+ "module": "NodeNext",
12
+ "isolatedModules": false,
13
+ "allowImportingTsExtensions": false,
14
+ //
15
+ "useDefineForClassFields" : true,
16
+ "allowSyntheticDefaultImports": true,
17
+ }
18
+ }