mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-15 20:12:49 +00:00
30 lines
658 B
JSON
30 lines
658 B
JSON
// tsconfig.json
|
|
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"importHelpers": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"useDefineForClassFields": true,
|
|
"resolveJsonModule": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"types": [
|
|
"@dcloudio/types"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"unpackage",
|
|
"src/**/*.nvue"
|
|
]
|
|
}
|