mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 06:22:53 +00:00
44 lines
980 B
JSON
44 lines
980 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowUnreachableCode": false,
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"experimentalDecorators": true,
|
|
"explainFiles": true,
|
|
"inlineSourceMap": true,
|
|
"isolatedModules": true,
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM"
|
|
],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noErrorTruncation": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM"
|
|
],
|
|
"strict": true,
|
|
"target": "ES2022"
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
},
|
|
"exclude": [
|
|
"../../../lib/"
|
|
]
|
|
}
|