hookshot/tsconfig.web.json

27 lines
712 B
JSON
Raw Permalink Normal View History

2020-12-12 13:19:55 +00:00
{
2020-12-12 20:29:33 +00:00
"include": ["web"],
2020-12-12 13:19:55 +00:00
"compilerOptions": {
2020-12-12 20:29:33 +00:00
"module": "commonjs",
"target": "es2019",
2020-12-12 13:19:55 +00:00
"moduleResolution": "node",
"jsx": "preserve",
"jsxFactory": "h",
"baseUrl": "./",
/* noEmit - Snowpack builds (emits) files, not tsc. */
"noEmit": true,
/* Additional Options */
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
2020-12-12 20:29:33 +00:00
"importsNotUsedAsValues": "error",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"typeRoots": [
"web/typings"
]
},
2020-12-12 13:19:55 +00:00
}