mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-01-12 22:49:13 +08:00
19 lines
459 B
JSON
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
|
|
}
|
|
}
|