0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-21 23:03:11 -05:00
Squire/tsconfig.json

29 lines
798 B
JSON
Raw Permalink Normal View History

{
"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"]
}
},
"include": ["./source"]
}