mirror of
https://github.com/theoludwig/react-component-form.git
synced 2024-07-17 07:30:13 +02:00
25 lines
638 B
JSON
25 lines
638 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"module": "esnext",
|
|
"target": "ES3",
|
|
"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,
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "example"]
|
|
}
|