23 lines
486 B
JSON
23 lines
486 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"^/*": ["./*"],
|
|
"@games/*": ["./packages/*"],
|
|
"$/*": ["./packages/client/*"],
|
|
"~/*": ["./packages/client/src/*"]
|
|
}
|
|
}
|
|
}
|