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

22 lines
538 B
JSON
Raw Normal View History

2020-08-04 16:22:31 +02:00
{
"compilerOptions": {
"target": "ESNext",
2022-08-26 20:19:31 +02:00
"module": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
2022-08-26 23:47:48 +02:00
"types": ["cypress"],
2022-08-26 20:19:31 +02:00
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2020-08-04 16:22:31 +02:00
}