42 lines
876 B
JSON
42 lines
876 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"react-scan": [
|
|
"../scan/dist"
|
|
],
|
|
"~utils/*": [
|
|
"./src/utils/*"
|
|
],
|
|
"~types/*": [
|
|
"./src/types/*"
|
|
],
|
|
"~assets/*": [
|
|
"./src/assets/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"chrome"
|
|
]
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|