mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-15 02:09:06 +08:00
* feat: switch to component api * chore: updated readme * chore: updated readme * feat: add cli * chore: updated readme * chore: updated readme * chore: updated readme * chore: updated readme * chore: updated readme * chore: updated readme * chore: updated readme * tests: fix broken test * chore: update package.json * chore: cleanup deps * v0.1.0-0 * fix: add cli to npm * fix: component api fixes * chore: updated example pic * chore: updated readme * chore: updated readme * chore: updated readme
29 lines
636 B
JSON
29 lines
636 B
JSON
{
|
|
"compilerOptions": {
|
|
// Recommended settings for Node 14
|
|
// https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
|
|
"lib": ["ES2020"],
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-native",
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"cli/*",
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js"
|
|
]
|
|
}
|