mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-21 14:53:09 -05:00
28 lines
798 B
JSON
28 lines
798 B
JSON
{
|
|
"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,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist/types",
|
|
"paths": {
|
|
"squire-rte": ["source"]
|
|
}
|
|
},
|
|
"include": ["./source"]
|
|
}
|