19 lines
435 B
JSON
19 lines
435 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"baseUrl": "src",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES6",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"outDir": "extension",
|
|
"types": ["node", "chrome"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"strictBindCallApply": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|