
* standardise json formatting
* add file association for schema files
* install eslint packages
* add eslint config
* remove tslint
* eslint autofix
* update eslint rules, eslintignore
* add lint:fix script
* update eslint rules, eslintignore
* add lint:fix script
* add import rules
* add import rules
* update import rules
* reduce excess style rules
* downgrade remaining to warnings
* fix enum values
fixup! fix enum values
* add all missing accessibility modifiers
fixup! add all missing accessibility modifiers
fixup! add all missing accessibility modifiers
* fix nullish errors
* update import rules
* fix all require imports
* fix all imports
* reduce excess style rules
* fix any types
fixup! fix any types
fixup! fix any types
* fix misc errors
* downgrade remaining to warnings
* return types
* fix types errors
* fix json import for test tsconfig
* auto lint fix
* fix lint errors in extension
* fix lint errors in Elixir
* make ref.pushElement public
* fix misc
* fix accidental public in CSharp raw text get
* fix new lint errors
* Merge branch 'refactor/imports/languages'
* strongly type Rust naming styles
* fix typo
* unify emitDeriveHeader for Rust
* ♻️
18 lines
465 B
JSON
18 lines
465 B
JSON
{
|
|
"extends": "@tsconfig/node18/tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["ES2022", "dom"],
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"typeRoots": ["node_modules/@types"],
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "dist",
|
|
"baseUrl": "src",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src"]
|
|
}
|