mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-05 19:22:07 +00:00
18 lines
443 B
JSON
18 lines
443 B
JSON
{
|
|
/* Settings used for anything extension related. */
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.extension.tsbuildinfo",
|
|
"rootDir": "./src/extension",
|
|
"outDir": "./extension",
|
|
"verbatimModuleSyntax": true,
|
|
},
|
|
"include": [
|
|
"./src/extension/**/*.ts",
|
|
"./src/types/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"./src/types/augment-window.d.ts"
|
|
]
|
|
}
|