react-ts-typewriter
Advanced tools
Comparing version 0.1.3 to 0.1.4
{ | ||
"name": "react-ts-typewriter", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "React typewriter component written in TypeScript with React 18", | ||
@@ -24,2 +24,3 @@ "main": "dist/Typewriter.jsx", | ||
"scripts": { | ||
"clean": "rm -rf dist", | ||
"prepublish": "tsc" | ||
@@ -26,0 +27,0 @@ }, |
@@ -14,5 +14,5 @@ { | ||
/* Language and Environment */ | ||
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ | ||
"target": "es6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ | ||
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ | ||
"jsx": "react-jsx", /* Specify what JSX code is generated. */ | ||
"jsx": "react", /* Specify what JSX code is generated. */ | ||
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ | ||
@@ -29,5 +29,5 @@ // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ | ||
/* Modules */ | ||
"module": "commonjs", /* Specify what module code is generated. */ | ||
"module": "es6", /* Specify what module code is generated. */ | ||
// "rootDir": "./", /* Specify the root folder within your source files. */ | ||
// "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ | ||
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ | ||
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ | ||
@@ -34,0 +34,0 @@ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ |
19766
244