Reviewed-on: McPeakDev/nychthemeron#3 Co-authored-by: Matthew L McPeak <m.mcpeak98@icloud.com> Co-committed-by: Matthew L McPeak <m.mcpeak98@icloud.com>
18 lines
417 B
JSON
18 lines
417 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": false,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"~/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue", "tests/**/*.ts"],
|
|
"exclude": ["dist"]
|
|
}
|