@falsejs/falsejs 3.1.1 → 3.3.1
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/README.md +7 -1
- package/biome.json +7 -11
- package/dist/index.js +1903 -1746
- package/dist/index.js.map +1 -1
- package/package.json +405 -404
- package/preinstall.js +7 -0
- package/spec/ava.test.js +38 -0
- package/spec/jasmine.test.js +71 -0
- package/spec/jest.test.js +90 -0
- package/spec/manual.test.js +80 -0
- package/spec/mocha.test.js +73 -0
- package/spec/qunit.test.js +44 -0
- package/spec/run_all_tests.js +182 -0
- package/spec/tape.test.js +37 -0
- package/tsconfig.json +45 -45
- package/Sanity.md +0 -17
package/tsconfig.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
1
|
+
{
|
|
2
|
+
// Visit https://aka.ms/tsconfig to read more about this file
|
|
3
|
+
"include": [
|
|
4
|
+
"./src/**/*.ts" // Adjust this pattern to match your source file locations
|
|
5
|
+
],
|
|
6
|
+
"compilerOptions": {
|
|
7
|
+
// File Layout
|
|
8
|
+
"rootDir": "./src",
|
|
9
|
+
"outDir": "./dist",
|
|
10
|
+
|
|
11
|
+
// Environment Settings
|
|
12
|
+
// See also https://aka.ms/tsconfig/module
|
|
13
|
+
"module": "commonjs",
|
|
14
|
+
"target": "es2024",
|
|
15
|
+
// For nodejs:
|
|
16
|
+
// "lib": ["esnext"],
|
|
17
|
+
// "types": ["node"],
|
|
18
|
+
// and npm install -D @types/node
|
|
19
|
+
|
|
20
|
+
// Other Outputs
|
|
21
|
+
"sourceMap": true,
|
|
22
|
+
"declaration": false,
|
|
23
|
+
|
|
24
|
+
// Stricter Typechecking Options
|
|
25
|
+
"noUncheckedIndexedAccess": true,
|
|
26
|
+
"exactOptionalPropertyTypes": true,
|
|
27
|
+
|
|
28
|
+
// Style Options
|
|
29
|
+
// "noImplicitReturns": true,
|
|
30
|
+
// "noImplicitOverride": true,
|
|
31
|
+
// "noUnusedLocals": true,
|
|
32
|
+
// "noUnusedParameters": true,
|
|
33
|
+
// "noFallthroughCasesInSwitch": true,
|
|
34
|
+
// "noPropertyAccessFromIndexSignature": true,
|
|
35
|
+
|
|
36
|
+
// Recommended Options
|
|
37
|
+
"strict": true,
|
|
38
|
+
"jsx": "react-jsx",
|
|
39
|
+
"verbatimModuleSyntax": true,
|
|
40
|
+
"isolatedModules": true,
|
|
41
|
+
"noUncheckedSideEffectImports": true,
|
|
42
|
+
"moduleDetection": "force",
|
|
43
|
+
"skipLibCheck": true
|
|
44
|
+
}
|
|
45
|
+
}
|
package/Sanity.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
Hi there.
|
|
2
|
-
it's me tj-commits.
|
|
3
|
-
i am running out of version numbers.
|
|
4
|
-
i'm struggling to stay sane
|
|
5
|
-
keep me sane
|
|
6
|
-
i don't want to lose sanity
|
|
7
|
-
i cant even comprehend life and existence anymore
|
|
8
|
-
my masterpieces, coding and spotify fox jones dont eaven mean anything
|
|
9
|
-
I didn't choose the 10x life. The 10x life chose me.
|
|
10
|
-
why did the 10x life choose me
|
|
11
|
-
10x engineers is good
|
|
12
|
-
but why bad
|
|
13
|
-
why is mental breakdown direct result of 10x
|
|
14
|
-
right now the world doesnt make the sense to i
|
|
15
|
-
please save me
|
|
16
|
-
help
|
|
17
|
-
help
|