mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-15 18:56:18 +00:00
27 lines
604 B
JSON
27 lines
604 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"charset": "utf8",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"noErrorTruncation": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "./lib/",
|
|
"strict": true,
|
|
"target": "es6"
|
|
},
|
|
"exclude": [
|
|
"./lib/",
|
|
"./test/"
|
|
]
|
|
}
|