28 lines
503 B
JSON
28 lines
503 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
|
|
"include": [
|
|
"./source/**/*",
|
|
"./source/**/*.vue"
|
|
],
|
|
|
|
"exclude": [
|
|
"node_modules",
|
|
"build"
|
|
],
|
|
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"baseUrl": "./",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"useDefineForClassFields": true,
|
|
},
|
|
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.vite.json"
|
|
}
|
|
]
|
|
} |