mirror of
https://github.com/rmccorkl/TubeSage.git
synced 2026-07-22 06:45:31 +00:00
32 lines
734 B
JSON
32 lines
734 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"baseUrl": ".",
|
||
|
|
"inlineSourceMap": true,
|
||
|
|
"inlineSources": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"target": "ES2020",
|
||
|
|
"allowJs": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"importHelpers": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"types": [
|
||
|
|
"node"
|
||
|
|
],
|
||
|
|
"lib": [
|
||
|
|
"DOM",
|
||
|
|
"ES2020"
|
||
|
|
],
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"**/*.ts",
|
||
|
|
"src/types/**/*.d.ts",
|
||
|
|
"types/**/*.d.ts"
|
||
|
|
]
|
||
|
|
}
|