16 lines
390 B
JSON
16 lines
390 B
JSON
{
|
|
"extends": "plasmo/templates/tsconfig.base",
|
|
"exclude": ["node_modules"],
|
|
"include": [".plasmo/index.d.ts", "./**/*.ts", "./**/*.tsx", "global.d.ts"],
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"~*": ["./src/*"],
|
|
},
|
|
"baseUrl": ".",
|
|
"lib": ["WebWorker", "dom", "WebWorker.ImportScripts"],
|
|
"strictNullChecks": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
},
|
|
}
|