blakeblackshear.frigate/web/tsconfig.json

28 lines
915 B
JSON
Raw Normal View History

2022-02-27 15:04:12 +01:00
{
2022-02-26 20:11:00 +01:00
"include": ["./src/**/*.tsx", "./src/**/*.ts"],
2022-02-27 15:04:12 +01:00
"compilerOptions": {
2022-02-26 20:11:00 +01:00
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
2022-02-27 15:04:12 +01:00
"jsxFactory": "h",
2022-02-26 20:11:00 +01:00
"baseUrl": "./",
/* paths - import rewriting/resolving */
"paths": {
// If you configured any Snowpack aliases, add them here.
// Add this line to get types for streaming imports (packageOptions.source="remote"):
// "*": [".snowpack/types/*"]
// More info: https://www.snowpack.dev/guides/streaming-imports
},
/* noEmit - Snowpack builds (emits) files, not tsc. */
"noEmit": true,
/* Additional Options */
"strict": false,
"skipLibCheck": true,
// "types": ["mocha", "snowpack-env"],
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"importsNotUsedAsValues": "error"
}
}