mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 15:23:29 -05:00
22 lines
605 B
JSON
22 lines
605 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2015",
|
||
|
"module": "ES2020",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"outDir": "./dist",
|
||
|
"allowUnreachableCode": false,
|
||
|
"allowUnusedLabels": false,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitOverride": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
// "noUncheckedIndexedAccess": true
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": ["./source"]
|
||
|
}
|