mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-13 01:36:22 +00:00
33 lines
855 B
JSON
33 lines
855 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"downlevelIteration": true,
|
|
"inlineSourceMap": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noErrorTruncation": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"isolatedModules": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "../../../lib/",
|
|
"lib": ["ES2022", "DOM"],
|
|
"strict": true,
|
|
"target": "ES2022"
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
},
|
|
"exclude": ["../../../app.js", "../../../lib/"]
|
|
}
|