14 lines
314 B
JSON
14 lines
314 B
JSON
import { defineConfig } from 'tsbuild'
|
|
|
|
export default defineConfig({
|
|
extends: '@vue/tsconfig/tsconfig.dom.json',
|
|
include: ['env.d.ts', 'src/**/*', 'src/**/*.vue'],
|
|
exclude: ['src/**/__tests__/*'],
|
|
compilerOptions: {
|
|
composite: true,
|
|
baseUrl: '.',
|
|
paths: {
|
|
'@/*': ['./src/*']
|
|
}
|
|
}
|
|
}) |