mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
25 lines
672 B
JSON
25 lines
672 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"lib": ["ESNext"],
|
|
"typeRoots": ["./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": ["./back/**/*", "./back.d.ts"],
|
|
"exclude": ["node_modules"],
|
|
"files": ["./back/index.d.ts"]
|
|
}
|