1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/tsconfig.json

25 lines
638 B
JSON
Raw Normal View History

2020-08-04 16:22:31 +02:00
{
"compilerOptions": {
"outDir": "dist",
"module": "esnext",
2020-08-05 02:53:04 +02:00
"target": "ES3",
2020-08-04 16:22:31 +02:00
"lib": ["dom", "esnext", "DOM.Iterable"],
"moduleResolution": "node",
"jsx": "react",
"sourceMap": true,
"declaration": true,
"esModuleInterop": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2020-08-05 02:53:04 +02:00
"allowSyntheticDefaultImports": true,
"downlevelIteration": true
2020-08-04 16:22:31 +02:00
},
"include": ["src"],
"exclude": ["node_modules", "dist", "example"]
}