@tsparticles/cli-create-utils 4.0.0-beta.12
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/.cache/eslint/.eslintcache +1 -0
- package/.dependency-cruiser.cjs +382 -0
- package/README.md +51 -0
- package/dist/file-utils.d.ts +28 -0
- package/dist/file-utils.js +60 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/string-utils.d.ts +20 -0
- package/dist/string-utils.js +34 -0
- package/dist/template-utils.d.ts +47 -0
- package/dist/template-utils.js +168 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/eslint.config.js +22 -0
- package/files/empty-project/.browserslistrc +1 -0
- package/files/empty-project/LICENSE +21 -0
- package/files/empty-project/eslint.config.js +6 -0
- package/files/empty-project/package.dist.json +78 -0
- package/files/empty-project/package.json +113 -0
- package/files/empty-project/rollup.config.js +16 -0
- package/files/empty-project/tsconfig.base.json +10 -0
- package/files/empty-project/tsconfig.browser.json +6 -0
- package/files/empty-project/tsconfig.json +6 -0
- package/files/empty-project/tsconfig.module.json +6 -0
- package/files/empty-project/tsconfig.types.json +6 -0
- package/package.json +77 -0
- package/renovate.json +9 -0
- package/src/file-utils.ts +87 -0
- package/src/index.ts +3 -0
- package/src/string-utils.ts +41 -0
- package/src/template-utils.ts +206 -0
- package/src/tsconfig.json +9 -0
- package/tests/file-utils.test.ts +109 -0
- package/tests/string-utils.test.ts +130 -0
- package/tests/tsconfig.json +15 -0
- package/tsconfig.json +53 -0
- package/vitest.config.ts +11 -0
package/tsconfig.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"rootDir": ".",
|
|
4
|
+
"outDir": ".",
|
|
5
|
+
"resolveJsonModule": true,
|
|
6
|
+
"composite": true,
|
|
7
|
+
"target": "ESNext",
|
|
8
|
+
"module": "NodeNext",
|
|
9
|
+
"moduleResolution": "NodeNext",
|
|
10
|
+
"lib": [
|
|
11
|
+
"ESNext",
|
|
12
|
+
"ES2024",
|
|
13
|
+
"ES2023",
|
|
14
|
+
"ES2022",
|
|
15
|
+
"ES2021",
|
|
16
|
+
"ES2020",
|
|
17
|
+
"ES2019",
|
|
18
|
+
"ES2018",
|
|
19
|
+
"ES2017",
|
|
20
|
+
"ES2016",
|
|
21
|
+
"ES2015"
|
|
22
|
+
],
|
|
23
|
+
"types": [
|
|
24
|
+
"node",
|
|
25
|
+
"klaw",
|
|
26
|
+
"prompts",
|
|
27
|
+
"eslint"
|
|
28
|
+
],
|
|
29
|
+
"strict": true,
|
|
30
|
+
"noImplicitAny": true,
|
|
31
|
+
"strictNullChecks": true,
|
|
32
|
+
"strictFunctionTypes": true,
|
|
33
|
+
"strictBindCallApply": true,
|
|
34
|
+
"strictPropertyInitialization": true,
|
|
35
|
+
"noImplicitThis": true,
|
|
36
|
+
"useUnknownInCatchVariables": true,
|
|
37
|
+
"alwaysStrict": true,
|
|
38
|
+
"noUnusedLocals": true,
|
|
39
|
+
"noUnusedParameters": true,
|
|
40
|
+
"exactOptionalPropertyTypes": true,
|
|
41
|
+
"noImplicitReturns": true,
|
|
42
|
+
"noFallthroughCasesInSwitch": true,
|
|
43
|
+
"noUncheckedIndexedAccess": true,
|
|
44
|
+
"noImplicitOverride": true,
|
|
45
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
46
|
+
"esModuleInterop": true,
|
|
47
|
+
"forceConsistentCasingInFileNames": true,
|
|
48
|
+
"allowSyntheticDefaultImports": true
|
|
49
|
+
},
|
|
50
|
+
"include": [
|
|
51
|
+
"src/**/*"
|
|
52
|
+
]
|
|
53
|
+
}
|