Files
squoosh/tsconfig.json
Jason Miller b489d9cd5b other changes
2020-11-12 09:16:45 -05:00

30 lines
565 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"strict": true,
"target": "es2017",
"module": "esnext",
"moduleResolution": "node",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"sourceMap": true,
"jsx": "react",
"jsxFactory": "h",
"allowJs": false,
"baseUrl": ".",
"paths": {
"codecs/*": [
"codecs/*"
]
}
},
"exclude": [
"src/sw/**/*",
"src/codecs/processor-worker/**/*",
".cache",
"public",
"node_modules"
]
}