diff --git a/babel.config.js b/babel.config.js index 083ce956..02f3cc37 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,6 +1,5 @@ // babel.config.js module.exports = { presets: ["babel-preset-expo"], - plugins: [ - ] + plugins: [], }; diff --git a/src/index.ts b/src/index.ts index c2cc9ee7..890dda67 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,4 +4,3 @@ export * from "./Transitions"; export * from "./Math"; export * from "./Vector"; export { default as ReText } from "./ReText"; -import "./v1"; diff --git a/tsconfig.json b/tsconfig.json index 9db90b94..9b2cae28 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,6 +20,6 @@ "types": ["react", "react-native", "jest"], "skipLibCheck": true }, - "files": ["src/index.d.ts", "src/__tests__/index.ts", "src/v1/__tests__/index.ts"], + "files": ["src/index.d.ts", "src/__tests__/index.ts", "src/v1/__tests__/index.ts", "src/v1/index.ts"], "include": ["src/index.ts", "node_modules/@types/jest"] }