* tracker: improve network sanitization * ui: fix hl image gen * tracker: rm sanitizer thing
18 lines
433 B
JSON
18 lines
433 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": false,
|
|
"target": "es2020",
|
|
"lib": ["DOM", "ES2022"],
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "build"
|
|
},
|
|
"exclude": ["**/*.test.ts"]
|
|
}
|