20 lines
491 B
JSON
20 lines
491 B
JSON
{
|
|
"include": [
|
|
"../src/js/typings/globals.d.ts",
|
|
"../src/**/*.ts",
|
|
"../src/**/*.tsx",
|
|
],
|
|
"exclude": ["../node_modules"],
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"lib": [ "ES2020", "DOM" ],
|
|
"baseUrl": "../src/",
|
|
"paths": { "~/*": ["js/*"] },
|
|
"types": ["node", "jest", "@testing-library/jest-dom", "@types/chrome"]
|
|
}
|
|
}
|