mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-09-26 22:49:14 +08:00
43 lines
796 B
JSON
43 lines
796 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"vueCompilerOptions": {
|
|
"target": 2.7
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"tests/**/*",
|
|
"registry/lib/**/*",
|
|
"webpack/**/*",
|
|
"registry/webpack/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dev",
|
|
"packages",
|
|
"typings"
|
|
],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
}
|
|
} |