mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
We are hosting a [MoQ](https://quic.video) relay on a remote (bare metal) server on Hetzner With a lot of help from @victorpahuus
45 lines
930 B
JSON
45 lines
930 B
JSON
{
|
|
"extends": "@nestri/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"lib": [
|
|
"es2022",
|
|
"DOM",
|
|
"WebWorker",
|
|
"DOM.Iterable"
|
|
],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@builder.io/qwik",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"outDir": "tmp",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"content-collections": [
|
|
"./.content-collections/generated"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
".eslintrc.cjs"
|
|
],
|
|
"include": [
|
|
"src",
|
|
"./*.d.ts",
|
|
"./*.config.ts",
|
|
"./*.config.js",
|
|
"content-collections.ts"
|
|
]
|
|
} |