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

33 lines
603 B
JSON
Raw Normal View History

2020-08-04 16:22:31 +02:00
{
2023-01-10 21:23:32 +01:00
"extends": "@tsconfig/strictest/tsconfig.json",
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"
],
2022-08-26 20:19:31 +02:00
"allowJs": true,
"types": [
"cypress"
],
2022-08-26 20:19:31 +02:00
"noEmit": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"jsx": "preserve",
2023-01-10 21:23:32 +01:00
"incremental": true,
"exactOptionalPropertyTypes": false,
"verbatimModuleSyntax": false,
"isolatedModules": true
2022-08-26 20:19:31 +02:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
2020-08-04 16:22:31 +02:00
}