17 lines
357 B
JSON
17 lines
357 B
JSON
{
|
|
"include": ["src/**/*.ts", "src/**/*.vue", "src/env.d.ts"],
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "ESNext",
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowImportingTsExtensions": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|