37 lines
841 B
JSON
37 lines
841 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["vite/client"],
|
|
"noEmit": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noImplicitAny": false,
|
|
"strictFunctionTypes": false,
|
|
"strictBindCallApply": false,
|
|
"noImplicitThis": false,
|
|
"alwaysStrict": false
|
|
},
|
|
"include": [
|
|
"**/*.js",
|
|
"**/*.jsx",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.jsx",
|
|
"src/**/*.vue",
|
|
"node_modules/tdesign-vue-next/global.d.ts"
|
|
],
|
|
"compileOnSave": false
|
|
} |