fed/tsconfig.json

21 lines
523 B
JSON
Raw Permalink Normal View History

2023-10-30 19:09:14 +01:00
{
"compilerOptions": {
2023-10-31 15:59:21 +01:00
"target": "es5",
2023-11-07 22:22:23 +01:00
"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"
},
2023-11-07 22:22:23 +01:00
"include": ["src", "src/Fed.test.tsx"]
2023-10-30 19:09:14 +01:00
}