Files
nativewind/tsconfig.json
Mark Lawlor bc37a23db1 feat: switch to component api (#29)
* 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
2022-04-26 17:15:42 +10:00

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"
]
}