mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"checkJs": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"noErrorTruncation": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strict": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"es2022"
|
|
],
|
|
"module": "es2022",
|
|
"target": "es2022",
|
|
"typeRoots": []
|
|
},
|
|
"include": [
|
|
"assets/boot/*.js",
|
|
"assets/pages/*.js",
|
|
"global.d.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.test.js",
|
|
"assets/worker/sw_cache.js",
|
|
"coverage",
|
|
"vite.config.js",
|
|
"jest.setup.js"
|
|
]
|
|
}
|