blakeblackshear.frigate/web/tsconfig.json

24 lines
619 B
JSON
Raw Normal View History

2022-02-27 15:04:12 +01:00
{
"compilerOptions": {
2022-03-06 05:16:31 +01:00
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
2022-02-26 20:11:00 +01:00
"skipLibCheck": true,
2022-03-06 05:16:31 +01:00
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
2022-02-26 20:11:00 +01:00
"forceConsistentCasingInFileNames": true,
2022-03-06 05:16:31 +01:00
"module": "ESNext",
"moduleResolution": "Node",
2022-02-26 20:11:00 +01:00
"resolveJsonModule": true,
2022-03-06 05:16:31 +01:00
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}