26 lines
667 B
JSON
26 lines
667 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2020",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
// 指定TypeScript如何从给定的模块说明符中查找文件。
|
|
"moduleResolution": "node",
|
|
// 指定TypeScript如何从给定的模块说明符中查找文件。
|
|
"declarationDir": "./dist/types"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
} |