mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-12 08:58:20 +08:00
28 lines
628 B
JSON
28 lines
628 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",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"cli/*",
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js"
|
|
]
|
|
}
|