Files
nativewind/tsconfig.json
2022-07-02 23:11:48 +10:00

19 lines
459 B
JSON

{
"compilerOptions": {
// Recommended settings for Node 14
// https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
"lib": ["esnext"],
"module": "commonjs",
"target": "ES2019",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"moduleResolution": "node",
"strict": true,
"skipLibCheck": true,
"declaration": true
}
}