mirror of
https://github.com/zhigang1992/react-native-jsonschema-form.git
synced 2026-06-12 15:28:38 +08:00
32 lines
749 B
JSON
32 lines
749 B
JSON
{
|
|
"include": ["src", "types"],
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "esnext",
|
|
"lib": ["esnext"],
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"*": ["src/*", "node_modules/*"]
|
|
},
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"allowJs": true
|
|
}
|
|
}
|