mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"resolveJsonModule": true
|
|
}
|
|
},
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"jsx": "react",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"rootDir": "",
|
|
"moduleResolution": "node",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"types": ["node", "jest"],
|
|
"sourceMap": true,
|
|
"outDir": "build/dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|