mirror of
https://github.com/OpenSquawk/OpenSquawk
synced 2026-05-13 01:46:08 +08:00
21 lines
471 B
JSON
21 lines
471 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~~/*": ["./*"],
|
|
"@@/*": ["./*"],
|
|
"~/\*": ["./app/*"],
|
|
"@/*": ["./app/*"]
|
|
},
|
|
"types": ["node"]
|
|
},
|
|
"include": ["scripts/**/*.ts", "server/**/*.ts", "shared/**/*.ts"]
|
|
}
|