mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
29 lines
704 B
JSON
29 lines
704 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"lib": ["es2021", "esnext.asynciterable", "DOM"],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/types",
|
|
"./node_modules/celebrate/lib/index.d.ts"
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"allowJs": true,
|
|
"noEmit": false,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["node_modules", "tests"]
|
|
}
|