mirror of
https://github.com/daief/gm-response-proxy.git
synced 2025-11-30 00:12:47 +08:00
27 lines
619 B
JSON
27 lines
619 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"module": "ESNext",
|
|
"removeComments": false,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"rootDir": ".",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"downlevelIteration": true
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"compileOnSave": false
|
|
}
|