21 lines
469 B
JSON
21 lines
469 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "nodenext",
|
|
// "declaration": true,
|
|
// "declarationDir": "./dist/types",
|
|
"jsx": "preserve",
|
|
"lib": ["ESNext", "DOM"],
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"vuetom": ["index.ts"]
|
|
}
|
|
},
|
|
"include": ["."],
|
|
"exclude": ["./gulpfile.ts"]
|
|
} |