@plugjs/build
Version:
Simple shared build using PlugJS
47 lines (42 loc) • 1.19 kB
JSON
{
"compilerOptions": {
"lib": [ "esnext" ],
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"types": [ ],
// Do not emit any files (we only want to type-check)
"noEmit": true,
// ES modules interoperability and preserve import/export statements
"esModuleInterop": true,
"verbatimModuleSyntax": true,
// Import relative files as "file.ts"
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
// Ultra strict
"strict": true,
// Implies:
// - alwaysStrict
// - noImplicitAny
// - noImplicitThis
// - strictBindCallApply
// - strictBuiltinIteratorReturn
// - strictFunctionTypes
// - strictNullChecks
// - strictPropertyInitialization
// - useUnknownInCatchVariables
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
},
"include": [
"./build.ts",
"./src",
],
}