fed/tsconfig.json

27 lines
555 B
JSON
Raw Normal View History

2023-10-30 19:09:14 +01:00
{
"compilerOptions": {
2023-10-31 15:59:21 +01:00
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2023-10-30 19:09:14 +01:00
"allowJs": true,
2023-10-31 15:59:21 +01:00
"skipLibCheck": true,
2023-10-30 19:09:14 +01:00
"esModuleInterop": true,
2023-10-31 15:59:21 +01:00
"allowSyntheticDefaultImports": true,
2023-10-30 19:09:14 +01:00
"strict": true,
2023-10-31 15:59:21 +01:00
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
, "src/Fed.test.tsx" ]
2023-10-30 19:09:14 +01:00
}