mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-09-11 20:29:11 +02:00
25 lines
635 B
JSON
25 lines
635 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"lib": ["ES2023", "DOM", "ESNext.Disposable"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"declaration": true,
|
|
"noEmitOnError": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"removeComments": false,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"types": [],
|
|
"allowImportingTsExtensions": true,
|
|
"rewriteRelativeImportExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.mts"]
|
|
}
|