mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
28 lines
656 B
JSON
28 lines
656 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"lib": ["ESNext"],
|
|
"typeRoots": [
|
|
"./types",
|
|
"../node_modules/celebrate/lib",
|
|
"../node_modules/@types"
|
|
],
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"outDir": "../static/build",
|
|
"allowJs": true,
|
|
"noEmit": false,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["./**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|