rn-shiki 0.0.24 → 0.0.26
Sign up to get free protection for your applications and to get access to all the features.
- package/babel.config.js +19 -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/syntax/highlighter/index.ts +2 -3
- package/src/vendor/shiki/manifest.json +365 -365
- package/tsconfig.json +1 -5
package/tsconfig.json
CHANGED
@@ -6,10 +6,6 @@
|
|
6
6
|
"baseUrl": "./",
|
7
7
|
"module": "esnext",
|
8
8
|
"moduleResolution": "node",
|
9
|
-
"paths": {
|
10
|
-
"vendor/*": ["src/vendor/*"],
|
11
|
-
"shiki": ["node_modules/shiki"]
|
12
|
-
},
|
13
9
|
"resolveJsonModule": true,
|
14
10
|
"allowJs": false,
|
15
11
|
"strict": true,
|
@@ -26,5 +22,5 @@
|
|
26
22
|
"skipLibCheck": true
|
27
23
|
},
|
28
24
|
"include": ["src"],
|
29
|
-
"exclude": ["node_modules", "lib", "src/vendor/*"]
|
25
|
+
"exclude": ["node_modules", "lib", "src/vendor/*", "babel.config.js", "metro.config.js", "jest.config.js"]
|
30
26
|
}
|