2024-05-08 18:01:01 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es2016",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"noImplicitAny": false,
|
2024-05-09 11:01:52 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true
|
2024-05-08 18:01:01 +08:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
|
|
|
}
|