Files
vscode/build/tsconfig.json
Matt Bierner b314a5e236 Try converting one of our gulpfiles to a module
Experiments with converting one of our gulpfiles to a module
2025-11-11 14:44:30 -08:00

34 lines
733 B
JSON

{
"compilerOptions": {
"target": "es2024",
"lib": [
"ES2024"
],
"module": "nodenext",
"alwaysStrict": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"resolveJsonModule": true,
// enable JavaScript type checking for the language service
// use the tsconfig.build.json for compiling which disable JavaScript
// type checking so that JavaScript file are not transpiled
"allowJs": true,
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"newLine": "lf",
"noEmit": true
},
"include": [
"**/*.ts",
"**/*.js",
"**/*.mjs",
],
"exclude": [
"node_modules/**"
]
}