@daiyam/artifact-lang-ts 0.5.1 → 0.5.2
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.
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
/*
|
|
4
|
-
"target": "
|
|
5
|
-
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
|
|
3
|
+
/* Language and Environment */
|
|
4
|
+
"target": "ES2022", /* Specify ECMAScript target version. */
|
|
6
5
|
"lib": [ /* Specify library files to be included in the compilation. */
|
|
7
|
-
"
|
|
6
|
+
"ES2022",
|
|
8
7
|
],
|
|
8
|
+
|
|
9
|
+
/* Modules */
|
|
10
|
+
"module": "node16", /* Specify what module code is generated. */
|
|
11
|
+
|
|
9
12
|
// "allowJs": false, /* Allow javascript files to be compiled. */
|
|
10
13
|
// "checkJs": false, /* Report errors in '.js' files. */
|
|
11
14
|
// "jsx": undefined, /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daiyam/artifact-lang-ts",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "The configuration for my typescript projects",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Baptiste Augrain",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"project-template",
|
|
32
32
|
"scaffold"
|
|
33
33
|
],
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "473f309c898c504201193c8e305f7bb1f8721f2f"
|
|
35
35
|
}
|