15 lines
430 B
JSON
15 lines
430 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"declaration": true, // 新增
|
|
"declarationMap": true // 新增
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "src/main.ts"] // 排除 main.ts
|
|
} |