mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
* Move web2 -> web -- this was an artifact from the original fork where I wanted to keep the original webapp running side by side. We've expanded the scope a lot since then and it doesn't make sense to keep this name * Remove old/ directory - this was leftover from the fork as well * Remove various files like PR template (we'll make a new one when we're ready) and CODE_OF_CONDUCT
41 lines
813 B
JSON
41 lines
813 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
],
|
|
"exclude": [
|
|
"./build/**/*",
|
|
"./**/*.test.ts",
|
|
"./**/*.ignore.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
} |