hookshot/web/tsconfig.json
Andrew Ferrazzutti 911a73abba
Move web tsconfig to let TS language server work (#506)
* Move `web` tsconfig to let TS language server work

* Assign typing to images

This removes type errors on imported images.
2022-09-30 12:35:53 -04:00

24 lines
575 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
"moduleResolution": "node",
"jsx": "preserve",
"jsxFactory": "h",
/* noEmit - Snowpack builds (emits) files, not tsc. */
"noEmit": true,
/* Additional Options */
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"typeRoots": [
"./typings"
]
}
}