26 lines
642 B
JSON
26 lines
642 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./types",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["node", "webpack-env", "vue"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.json", "src/types/**/*.d.ts"]
|
|
}
|