mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-22 03:10:43 +08:00
31 lines
629 B
JSON
31 lines
629 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"module": "es6",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@assets/*": ["./src/assets/*"],
|
|
"@network/*": ["./src/network/*"],
|
|
"@types/*": ["./src/types/*"]
|
|
},
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/types"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|