@downforce/tsconfig 1.0.6 → 1.0.7
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/LICENSE.txt +17 -19
- package/package.json +4 -4
- package/preset=node-lib.json +10 -0
- package/preset=react-app.json +13 -0
- package/preset=react-lib.json +12 -0
- package/preset=solid-app.json +13 -0
- package/preset=solid-lib.json +13 -0
- package/preset=web-lib.json +9 -0
- package/{with-check-strict.json → use-defaults=sane.json} +17 -0
- package/{with-layout-lib-esm.json → use-layout=esm.json} +1 -6
- package/use-platform=web.json +5 -0
- package/preset-node-lib-cjs.json +0 -10
- package/preset-node-lib.json +0 -24
- package/preset-react-app.json +0 -22
- package/preset-react-lib.json +0 -9
- package/preset-solid-app.json +0 -9
- package/preset-solid-lib.json +0 -11
- package/preset-web-lib.json +0 -22
- package/with-api-web.json +0 -5
- /package/{with-api-js.json → use-platform=js.json} +0 -0
package/LICENSE.txt
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
All rights reserved.
|
|
1
|
+
MIT License
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
are permitted provided that the following conditions are met:
|
|
3
|
+
Copyright (c) Daniele Orlando <dnl.rlnd(at)gmail.com>
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
9
11
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
and/or other materials provided with the distribution.
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
22
|
-
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
23
|
-
OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@downforce/tsconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"files": [
|
|
7
|
-
"
|
|
8
|
-
"
|
|
7
|
+
"./LICENSE.txt",
|
|
8
|
+
"./**/*.json"
|
|
9
9
|
],
|
|
10
10
|
"author": "Daniele Orlando",
|
|
11
|
-
"license": "
|
|
11
|
+
"license": "MIT",
|
|
12
12
|
"description": "TypeScript tsconfig presets",
|
|
13
13
|
"keywords": [
|
|
14
14
|
"TypeScript",
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": [
|
|
3
|
+
"./use-defaults=sane.json",
|
|
4
|
+
"./use-platform=web.json"
|
|
5
|
+
],
|
|
6
|
+
"compilerOptions": {
|
|
7
|
+
"allowImportingTsExtensions": true,
|
|
8
|
+
"jsx": "react-jsx",
|
|
9
|
+
"jsxImportSource": "react",
|
|
10
|
+
"noEmit": true,
|
|
11
|
+
"types": ["react", "react-dom"]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"allowJs": false,
|
|
4
|
+
"allowSyntheticDefaultImports": true,
|
|
4
5
|
"allowUnreachableCode": false,
|
|
5
6
|
"alwaysStrict": true,
|
|
7
|
+
"composite": true,
|
|
8
|
+
"declaration": true,
|
|
9
|
+
"esModuleInterop": true,
|
|
6
10
|
"exactOptionalPropertyTypes": true,
|
|
7
11
|
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"incremental": true,
|
|
13
|
+
"isolatedDeclarations": true,
|
|
8
14
|
"isolatedModules": true,
|
|
15
|
+
"lib": ["esnext"],
|
|
16
|
+
"libReplacement": false,
|
|
17
|
+
"module": "nodenext",
|
|
18
|
+
"moduleDetection": "auto",
|
|
19
|
+
"moduleResolution": "nodenext",
|
|
9
20
|
"noEmitOnError": true,
|
|
21
|
+
"noErrorTruncation": true,
|
|
10
22
|
"noImplicitAny": true,
|
|
11
23
|
"noImplicitOverride": true,
|
|
12
24
|
"noImplicitReturns": true,
|
|
@@ -15,12 +27,17 @@
|
|
|
15
27
|
"noUncheckedSideEffectImports": true,
|
|
16
28
|
"noUnusedLocals": false,
|
|
17
29
|
"noUnusedParameters": false,
|
|
30
|
+
"resolveJsonModule": true,
|
|
31
|
+
"skipDefaultLibCheck": true,
|
|
32
|
+
"skipLibCheck": true,
|
|
18
33
|
"strict": true,
|
|
19
34
|
"strictBindCallApply": true,
|
|
20
35
|
"strictBuiltinIteratorReturn": true,
|
|
21
36
|
"strictFunctionTypes": true,
|
|
22
37
|
"strictNullChecks": true,
|
|
23
38
|
"strictPropertyInitialization": true,
|
|
39
|
+
"target": "esnext",
|
|
40
|
+
"tsBuildInfoFile": "${configDir}/.cache/tsbuildinfo",
|
|
24
41
|
"useUnknownInCatchVariables": true,
|
|
25
42
|
"verbatimModuleSyntax": true
|
|
26
43
|
}
|
package/preset-node-lib-cjs.json
DELETED
package/preset-node-lib.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"./with-check-strict.json",
|
|
4
|
-
"./with-api-js.json",
|
|
5
|
-
"./with-layout-lib-esm.json"
|
|
6
|
-
],
|
|
7
|
-
"compilerOptions": {
|
|
8
|
-
"allowSyntheticDefaultImports": true,
|
|
9
|
-
"composite": true,
|
|
10
|
-
"declaration": true,
|
|
11
|
-
"esModuleInterop": true,
|
|
12
|
-
"importHelpers": true,
|
|
13
|
-
"incremental": true,
|
|
14
|
-
"isolatedDeclarations": true,
|
|
15
|
-
"module": "nodenext",
|
|
16
|
-
"moduleDetection": "auto",
|
|
17
|
-
"moduleResolution": "nodenext",
|
|
18
|
-
"noErrorTruncation": true,
|
|
19
|
-
"skipDefaultLibCheck": true,
|
|
20
|
-
"skipLibCheck": true,
|
|
21
|
-
"target": "esnext",
|
|
22
|
-
"tsBuildInfoFile": "${configDir}/node_modules/.cache/tsbuildinfo"
|
|
23
|
-
}
|
|
24
|
-
}
|
package/preset-react-app.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"./with-check-strict.json",
|
|
4
|
-
"./with-api-web.json"
|
|
5
|
-
],
|
|
6
|
-
"compilerOptions": {
|
|
7
|
-
"allowImportingTsExtensions": true,
|
|
8
|
-
"allowSyntheticDefaultImports": true,
|
|
9
|
-
"incremental": true,
|
|
10
|
-
"jsx": "react-jsx",
|
|
11
|
-
"module": "esnext",
|
|
12
|
-
"moduleDetection": "auto",
|
|
13
|
-
"moduleResolution": "bundler",
|
|
14
|
-
"noEmit": true,
|
|
15
|
-
"noErrorTruncation": true,
|
|
16
|
-
"resolveJsonModule": true,
|
|
17
|
-
"skipDefaultLibCheck": true,
|
|
18
|
-
"skipLibCheck": true,
|
|
19
|
-
"target": "esnext",
|
|
20
|
-
"tsBuildInfoFile": "${configDir}/node_modules/.cache/tsbuildinfo"
|
|
21
|
-
}
|
|
22
|
-
}
|
package/preset-react-lib.json
DELETED
package/preset-solid-app.json
DELETED
package/preset-solid-lib.json
DELETED
package/preset-web-lib.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"./with-check-strict.json",
|
|
4
|
-
"./with-api-web.json",
|
|
5
|
-
"./with-layout-lib-esm.json"
|
|
6
|
-
],
|
|
7
|
-
"compilerOptions": {
|
|
8
|
-
"composite": true,
|
|
9
|
-
"declaration": true,
|
|
10
|
-
"importHelpers": true,
|
|
11
|
-
"incremental": true,
|
|
12
|
-
"isolatedDeclarations": true,
|
|
13
|
-
"module": "nodenext",
|
|
14
|
-
"moduleDetection": "auto",
|
|
15
|
-
"moduleResolution": "nodenext",
|
|
16
|
-
"noErrorTruncation": true,
|
|
17
|
-
"skipDefaultLibCheck": true,
|
|
18
|
-
"skipLibCheck": true,
|
|
19
|
-
"target": "esnext",
|
|
20
|
-
"tsBuildInfoFile": "${configDir}/node_modules/.cache/tsbuildinfo"
|
|
21
|
-
}
|
|
22
|
-
}
|
package/with-api-web.json
DELETED
|
File without changes
|