sudo-proxy/tsconfig.json

24 lines
572 B
JSON
Raw Normal View History

2023-09-06 21:34:21 +00:00
{
2023-09-09 03:59:05 +00:00
"compilerOptions": {
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
}
},
"extends": "./.nitro/types/tsconfig.json"
2023-09-06 21:34:21 +00:00
}