Files
squoosh/generic-tsconfig.json
Ingvar Stepanyan 72f085f650 WIP console-feed
2020-12-10 15:24:22 +00:00

25 lines
593 B
JSON

{
"compilerOptions": {
"target": "ES2019",
"downlevelIteration": true,
"module": "esnext",
"jsx": "react",
"jsxFactory": "h",
"strict": true,
"moduleResolution": "node",
"composite": true,
"declarationMap": true,
"baseUrl": "./",
"rootDir": "./",
"outDir": ".tmp/ts",
"allowSyntheticDefaultImports": true,
"paths": {
"static-build/*": ["src/static-build/*"],
"client/*": ["src/client/*"],
"shared/*": ["src/shared/*"],
"features/*": ["src/features/*"],
"react": ["node_modules/preact/compat"]
}
}
}