3313787f16
* fix: viewer node16 support + fixing up package.jsons * lockfile fix * Removed unnecessary type augmentations. Deleted unused SpeckleCameraControls --------- Co-authored-by: AlexandruPopovici <alexandrupopoviciioan@gmail.com>
25 lines
714 B
JSON
25 lines
714 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"lib": ["DOM"],
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
|
|
"verbatimModuleSyntax": false,
|
|
"strictPropertyInitialization": false /* We are not building a ToDO list app. This option is ridiculous */,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "./dist",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"declaration": true
|
|
},
|
|
"include": ["./src/**/*", "test"],
|
|
"exclude": ["dist"]
|
|
}
|