29 lines
912 B
JSON
29 lines
912 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"types": ["vite/client", "vite-plugin-pwa/client"],
|
|
"allowArbitraryExtensions": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"ignoreDeprecations": "6.0",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./apps/demo/src/*"],
|
|
"@native-vue-router/core": ["./packages/core/src/index.ts"],
|
|
"@native-vue-router/preset-native": [
|
|
"./packages/preset-native/src/index.ts"
|
|
],
|
|
"@native-vue-router/capacitor": ["./packages/capacitor/src/index.ts"],
|
|
"@native-vue-router/electron": ["./packages/electron/src/index.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"apps/demo/src/**/*.ts",
|
|
"apps/demo/src/**/*.vue",
|
|
"packages/*/src/**/*.ts",
|
|
"packages/*/src/**/*.vue"
|
|
]
|
|
}
|