mirror of
https://github.com/unraid/api.git
synced 2026-01-04 07:29:48 -06:00
29 lines
579 B
JSON
29 lines
579 B
JSON
{
|
|
"include": [
|
|
"app/**/*",
|
|
"test/**/*",
|
|
"package.json"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"allowJs": false,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true
|
|
}
|
|
} |