mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
36 lines
579 B
JSON
36 lines
579 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": ["webpack-env"],
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"vue": [
|
|
"node_modules/@vue/compat"
|
|
],
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"tests/**/*",
|
|
"registry/lib/**/*",
|
|
"webpack/**/*",
|
|
"registry/webpack/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dev",
|
|
"packages",
|
|
"typings"
|
|
],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
}
|
|
}
|