Bilibili-Evolved/tsconfig.json
2023-03-11 00:08:16 +08:00

33 lines
519 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"compilerOptions": {
"strict": false,
"sourceMap": true,
"baseUrl": ".",
"types": ["webpack-env"],
"paths": {
"@/*": [
"src/*"
]
}
},
"include": [
"src/**/*",
"tests/**/*",
"registry/lib/**/*",
"webpack/**/*",
"registry/webpack/**/*"
],
"exclude": [
"node_modules",
"dev",
"packages",
"typings"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}