16 lines
436 B
16 lines
436 B
3 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"strict": false,
|
||
|
"jsx": "preserve",
|
||
|
"allowJs": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"sourceMap": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"esModuleInterop": true,
|
||
|
"lib": ["esnext", "dom"]
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||
|
}
|