qvt-components
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
33 lines (30 loc) • 909 B
JSON
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
// enabling declaration (.d.ts) emit
"declaration": true,
// optional - in general it's a good practice to decouple declaration files from your actual transpiled JavaScript files
"declarationDir": "./dist",
// optional if you're using babel to transpile TS -> JS
// "emitDeclarationOnly": true
},
"include": [ "./src/**/*.ts", "src/native/Forms/SwitchSelector/index.tsx" ]
}