Migrated git root from W:/programming/Projects/ to W:/programming/Projects/Tubearr/. Previous history preserved in Tubearr-full-backup.bundle at parent directory. Completed milestones: M001 through M005 Active: M006/S02 (Add Channel UX)
20 lines
500 B
JSON
20 lines
500 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "../../dist/frontend",
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shared/*": ["../types/*"]
|
|
},
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "../types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|