1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 10:54:44 +00:00
Files
tools/packages/tsconfig/tsconfig.json
Andrew Robonen 9805b30c75 Vhs (#37)
* chore(repo): update deps in cli

* refactor(packages/tsconfig): change target to ESNext

* chore(deps): update all deps

* feat(apps/vhs): add vhs app

* chore(deps): sync with master
2024-09-28 02:09:29 +07:00

35 lines
1.0 KiB
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Base TypeScript Configuration",
"compilerOptions": {
/* Basic Options */
"module": "ESNext",
"noEmit": true,
"lib": ["ESNext"],
"moduleResolution": "Bundler",
"target": "ESNext",
"outDir": "dist",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"removeComments": true,
"verbatimModuleSyntax": true,
"useDefineForClassFields": true,
/* Strict Type-Checking Options */
"strict": true,
"noUncheckedIndexedAccess": true,
/* Library transpiling */
"declaration": true,
// "composite": true,
"sourceMap": false,
"declarationMap": false
},
"exclude": ["node_modules", "dist", ".output", "coverage"]
}