browsertrix/frontend/tsconfig.json
Emma Segal-Grossman f853fcdd81
Upgrade Prettier to 3 (#1513)
Updates Prettier to major version 3, and also updates a couple
prettier-related other things.

Prelude to #1511 so that that PR doesn't include a bunch of unrelated
changes
2024-01-31 20:56:17 -05:00

35 lines
758 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"module": "esnext",
"target": "es6",
"moduleResolution": "node",
"allowJs": true,
"strict": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"importHelpers": true,
"sourceMap": true,
"inlineSources": true,
"skipLibCheck": true,
"plugins": [
{
"name": "ts-lit-plugin",
"strict": true,
"rules": {
"no-missing-import": "off",
},
"maxNodeModuleImportDepth": -1,
},
],
"incremental": true,
"paths": {
"@/*": ["./src/*"],
"~assets/*": ["./src/assets/*"],
},
},
"include": ["**/*.ts"],
"exclude": ["node_modules"],
}