2023-01-22 19:35:12 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2015",
|
|
|
|
"module": "ES2020",
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
// "noUncheckedIndexedAccess": true
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2023-07-30 21:47:02 -05:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"outDir": "dist/types",
|
|
|
|
"paths": {
|
|
|
|
"squire-rte": ["source"]
|
|
|
|
}
|
2023-01-22 19:35:12 -05:00
|
|
|
},
|
|
|
|
"include": ["./source"]
|
|
|
|
}
|