mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-17 03:58:57 +08:00
* feat: options to control what is transformed refactor: convert everything to typescript * 0.0.18-0 * update npm files * 0.0.19-0 * 0.0.19-1 * switch to commonjs * 0.0.19-2 * make __useParseTailwind params options * 0.0.19-3 * correctly default to native-inline * 0.0.19-4 * add tailwind.config.js instructions to readme * attempt to fix react-refresh * 0.0.19-5 * remove state hooks from useParseTailwind * 0.0.19-6 * Revert "0.0.19-6" This reverts commited8f6a1dde. * Revert "remove state hooks from useParseTailwind" This reverts commit833624dbb5. * Revert "0.0.19-5" This reverts commit6cde5493e4. * Revert "Revert "0.0.19-5"" This reverts commit 8aff80cd77cc7d85cf84807abad88e6f49cb00aa. * revert fast refresh hooks * revert hooks, rename hook * 0.0.19-7 * updated platforms
24 lines
481 B
JSON
24 lines
481 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["es2017"],
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js"
|
|
]
|
|
}
|