17 lines
426 B
JSON
17 lines
426 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"strictNullChecks": false,
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"lib": [ "ES2020", "DOM" ],
|
|
"baseUrl": "src/",
|
|
"paths": { "~/*": ["js/*"] },
|
|
"types": ["node", "jest", "@testing-library/jest-dom", "@types/chrome"]
|
|
}
|
|
}
|