rn-shiki 0.0.24 → 0.0.25
Sign up to get free protection for your applications and to get access to all the features.
- package/babel.config.js +22 -0
- package/lib/commonjs/components/syntax/SyntaxHighlighter.js +2 -2
- package/lib/commonjs/components/syntax/SyntaxHighlighter.js.map +1 -1
- package/lib/commonjs/syntax/highlighter/index.js +3 -5
- package/lib/commonjs/syntax/highlighter/index.js.map +1 -1
- package/lib/commonjs/vendor/shiki/manifest.json +365 -365
- package/lib/typescript/components/syntax/SyntaxHighlighter.d.ts.map +1 -1
- package/lib/typescript/syntax/highlighter/index.d.ts +1 -1
- package/lib/typescript/syntax/highlighter/index.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/components/syntax/SyntaxHighlighter.tsx +2 -2
- package/src/syntax/highlighter/index.ts +1 -3
- package/src/vendor/shiki/manifest.json +365 -365
- package/tsconfig.json +2 -3
package/tsconfig.json
CHANGED
@@ -7,8 +7,7 @@
|
|
7
7
|
"module": "esnext",
|
8
8
|
"moduleResolution": "node",
|
9
9
|
"paths": {
|
10
|
-
"vendor/*": ["src/vendor/*"]
|
11
|
-
"shiki": ["node_modules/shiki"]
|
10
|
+
"@vendor/*": ["src/vendor/*"]
|
12
11
|
},
|
13
12
|
"resolveJsonModule": true,
|
14
13
|
"allowJs": false,
|
@@ -26,5 +25,5 @@
|
|
26
25
|
"skipLibCheck": true
|
27
26
|
},
|
28
27
|
"include": ["src"],
|
29
|
-
"exclude": ["node_modules", "lib", "src/vendor/*"]
|
28
|
+
"exclude": ["node_modules", "lib", "src/vendor/*", "babel.config.js", "metro.config.js", "jest.config.js"]
|
30
29
|
}
|