25 lines
596 B
JSON
25 lines
596 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/*"],
|
|
"worker-shared/*": ["src/worker-shared/*"]
|
|
}
|
|
}
|
|
}
|