Files
gm-response-proxy/tsconfig.json
2020-11-30 16:09:03 +08:00

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
}