diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..eb0cdc9 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": [ + "./*" + ] + }, + "target": "es2020", + "module": "esnext", + "moduleResolution": "node", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "jsx": "preserve", + "strict": true, + "skipLibCheck": true + }, + "include": [ + "**/*.js", + "**/*.jsx", + "**/*.vue" + ], + "exclude": [ + "node_modules", + "unpackage", + "dist" + ] +} \ No newline at end of file