jcf-402_datacharts/tsconfig.json
Jomar e6825554a7 Testing out autocomplete feature for obj.
properties.

Looking to add more options and expand autocomplete
2026-04-13 18:23:26 -07:00

31 lines
693 B
JSON

{
"compilerOptions": {
"baseUrl": "src",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"importHelpers": true,
"noUncheckedIndexedAccess": true,
"isolatedModules": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"allowSyntheticDefaultImports": true,
"useUnknownInCatchVariables": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"ESNext"
]
},
"include": [
"src/**/*.ts"
, "helpers/graphs.ts", "helpers/parser.ts", "helpers/appContext.ts", "helpers/declarations.d.ts" ]
}