mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-11 08:46:16 +00:00
30 lines
818 B
JSON
30 lines
818 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"charset": "utf8",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": 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": ["ES2021", "DOM"],
|
|
"strict": true,
|
|
"target": "ES2021"
|
|
},
|
|
"exclude": ["../../../app.js", "../../../lib/", "../../../test/"]
|
|
}
|