Files
webawesome/tsconfig.base.json
Konnor Rogers 6e548dd85b Turn Web Awesome into a monorepo (#1002)
* finishing touches

* finishing touches

* use bash

* remove pro stuff

* update github actions

* fix head.njk
2025-05-29 19:26:10 -04:00

38 lines
1.0 KiB
JSON

{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"target": "es2017",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": [
"dom",
"dom.Iterable",
"es2020"
],
"emitDeclarationOnly": true,
"declaration": true,
"rootDir": ".",
"strict": true,
"strictPropertyInitialization": false,
"strictFunctionTypes": false,
"noImplicitThis": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"useDefineForClassFields": false, /* See https://lit.dev/docs/components/properties/#avoiding-issues-with-class-fields */
"removeComments": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"useUnknownInCatchVariables": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"types": [
"mocha",
"user-agent-data-types"
]
}
}