-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update change handler to support paste
- Loading branch information
1 parent
caa8a1f
commit 3d06229
Showing
6 changed files
with
59 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,28 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": [ | ||
"esnext" | ||
], | ||
"jsx": "react-native", | ||
"types": ["react", "jest"], | ||
"allowJs": true, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": false, | ||
"outDir": "./dist", | ||
"sourceMap": true, | ||
"noImplicitReturns": true, | ||
"suppressImplicitAnyIndexErrors": true, | ||
"noUnusedLocals": true, | ||
"declaration": true, | ||
"noFallthroughCasesInSwitch": true | ||
}, | ||
"include": [ | ||
"src/*" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
"**/__tests__/*" | ||
] | ||
} | ||
|
||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": ["esnext"], | ||
"jsx": "react-native", | ||
"types": ["react", "jest"], | ||
"allowJs": true, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": false, | ||
"outDir": "./dist", | ||
"sourceMap": true, | ||
"noImplicitReturns": true, | ||
"ignoreDeprecations": "5.0", | ||
"noUnusedLocals": true, | ||
"declaration": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"skipLibCheck": true | ||
}, | ||
"include": ["src/*"], | ||
"exclude": ["node_modules", "**/__tests__/*"] | ||
} |