48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "dist",
|
|
"sourceMap": false,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"declaration": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
],
|
|
"types": [],
|
|
"skipLibCheck": true,
|
|
// "files": "src/index.ts",
|
|
"emitDeclarationOnly": true,
|
|
"declarationDir": "dist",
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"nezha": [
|
|
"src/index.ts"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"packages/**/__tests__"
|
|
]
|
|
} |